/* ==========================================================================
   DESIGN PERSONNALISÉ DES POPUPS (INFOBULLES) LEAFLET
   ========================================================================== */

/* Le conteneur global de la popup */
.leaflet-popup-content-wrapper {
    background: #ffffff !important;
    color: #2c3e50 !important;
    border-radius: 12px !important;
    padding: 2px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

/* Le texte à l'intérieur de la popup */
.leaflet-popup-content {
    margin: 10px 14px !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
}

/* Le petit triangle sous la popup */
.leaflet-popup-tip {
    background: #ffffff !important;
}

/* Force la popup à passer au-dessus des couches de la carte */
.leaflet-popup {
    opacity: 1 !important;
    visibility: visible !important;
}