.rect-hotspot {
  background-color: rgba(0, 100, 255, 0.4);
  pointer-events: auto;
  position: relative;
  width: 100px;
  height: 100px;
}

.custom-info-tooltip {
  display: none;
  position: absolute;
  top: 5px;
  left: 105%;
  width: 250px;
  padding: 10px;
  background-color: rgba(58,68,84,0.95);
  color: white;
  border-radius: 8px;
  font-size: 14px;
  z-index: 10;
}

.rect-hotspot:hover .custom-info-tooltip {
  display: block;
}

/* Vizualis (kék) hotspotok */
.rect-hotspot.visual {
  background-color: rgba(0, 100, 255, 0.4);
  pointer-events: none; /* ne reagáljon az egeret */
}

/* Hover hotspot (piros, látható és érzékeny) */
.rect-hotspot.hover-zone {
  background-color: rgba(255, 0, 0, 0.4);
  pointer-events: auto;
}
