/* Corrections pour Leaflet dans Astro */

.leaflet-container {
  height: 100%;
  width: 100%;
  z-index: 1;
}

.leaflet-div-icon {
  background: transparent;
  border: none;
}

.custom-marker-cluster {
  background-color: rgba(49, 130, 206, 0.8);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  width: 40px;
  height: 40px;
}

.cluster-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Fix pour les icu00f4nes de marqueur */
.leaflet-marker-icon {
  background-image: none;
}

/* S'assurer que les popups s'affichent correctement */
.leaflet-popup-content-wrapper {
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
}

.leaflet-popup-content {
  margin: 0;
  padding: 12px;
  width: 250px !important;
}

.popup-content h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

/* Fix pour les contru00f4les de zoom */
.leaflet-control-zoom a {
  color: #333;
  text-decoration: none;
}
