.image-map-container {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.base-image {
  width: 100%;
  border-radius: 8px;
}

.hotspot-box {
  position: absolute;
  border: 2px solid rgba(255, 0, 0, 0.6);
  cursor: pointer;
  transition: 0.2s;
}

.hotspot-box:hover {
  background: rgba(255, 0, 0, 0.2);
}

.hotspot-box.active {
  border: 2px solid red;
  background: rgba(255, 0, 0, 0.3);
}

#info-box {
  margin-top: 16px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
}