.ui-panel{
  position:absolute;
  top:10px;
  left:10px;
  background:white;
  padding:10px;
  border-radius:5px;
}

.hotspot {
  position: relative;
  cursor: pointer;
}

/* 🔹 Tooltip */
.hotspot-tooltip {
  position: absolute;
  bottom: -20%;
  left: 50%;
  z-index: 100;
  transform: translateX(-50%);
  background: black;
  color: white;
  padding: 4px 8px;
  font-size: 12px;
  white-space: nowrap;
  border-radius: 4px;
  pointer-events: none;
  transition: 0.2s;
}

/* 🔹 Modal */
.hotspot-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotspot-modal.hidden {
  display: none;
}

.hotspot-modal-content {
  background: white;
  padding: 20px;
  max-width: 500px;
  border-radius: 8px;
}

.close {
  float: right;
  cursor: pointer;
  font-size: 20px;
}