/* background: #dc3545; */
/* #b2d235 */
.image-container-pulsingcircle {
  position: relative;
  width: 100%;
  aspect-ratio: 280 / 137;
  overflow: hidden;
}

.base-image {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Show entire image, no cropping */
  object-position: center;
  display: block;
}

.hotspot {
  position: absolute;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.pulse {
  width: 20px;
  height: 20px;
  background: #dc3545;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.pulse::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(0, 123, 255, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-animation 1.0s infinite;
  z-index: 0;
}

@keyframes pulse-animation {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

.hotspot {
  position: absolute;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.pulse {
  width: 20px;
  height: 20px;
  background: #dc3545;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.pulse::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(0, 123, 255, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-animation 1s infinite;
  z-index: 0;
}

@keyframes pulse-animation {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

.tooltip {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #b2d235; /* #fff */
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.hotspot:hover .tooltip {
  opacity: 1;
}

.tooltip-down {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #b2d235; /* #fff */
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.hotspot:hover .tooltip-down {
  opacity: 1;
}