.custom-map-marker {
  color: var(--accent-color);
  font-size: 30px;
  text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.custom-map-marker:hover {
  color: var(--primary-color);
  transform: scale(1.2);
}

/* Animation for map loading */
@keyframes mapFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

#map {
  animation: mapFadeIn 0.5s ease-out;
}

/* Improve map popup styling */
.leaflet-popup-content-wrapper {
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.leaflet-popup-content {
  padding: 8px;
  margin: 8px 120px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.leaflet-popup-tip {
  background-color: white;
}
