/* Map Components - loads after legacy style.css to override */
/* Keep blue location dot above FABs */
.leaflet-interactive.my-location-dot,
.leaflet-marker-pane .my-location-dot {
  transform: translateY(calc(-1 * (20px + 16px + var(--safe-b))));
  transition: transform 0.3s ease;
}

/* POI labels */
.poi-name-label-text {
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  pointer-events: none;
  transition: all 0.2s ease;
  margin-top: 2px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .poi-name-label-text {
    font-size: 10px;
    padding: 3px 6px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
}

/* Location indicator */
.location-indicator {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: var(--z-overlay);
  backdrop-filter: blur(10px);
  transition: all 0.2s;
}

@media (max-width: 768px) {
  .location-indicator {
    bottom: 15px;
    left: 10px;
    right: 10px;
    max-width: none;
    font-size: 0.85rem;
    padding: 6px 10px;
  }
}

