.map-pin {
  position: absolute;
  width: 20px; /* adjust based on your image size */
  height: 20px;
  transform: translate(-50%, -100%); /* aligns bottom of pin with position */
  cursor: pointer;
}

.map-pin img {
  width: 100%;
  height: 100%;
  display: block;
}

.map-tooltip {
  position: absolute;
  background: #333;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translate(-50%, -120%);
  z-index: 1000;
}

.map-tooltip.show {
  opacity: 1;
  transform: translate(-50%, -140%);
}
