html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', Arial, sans-serif;
    color: #1f2933;
}

#map {
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
}

/* ---- Barre de filtres ---- */
#filtres {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 56px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    background: #ffffff;
    border-bottom: 1px solid #e3e8ee;
    z-index: 1000;
    overflow-x: auto;
}
#filtres_titre {
    font-weight: 700;
    font-size: 16px;
    margin-right: 8px;
    white-space: nowrap;
}
#filtres select {
    height: 34px;
    padding: 0 28px 0 10px;
    border: 1px solid #cbd2d9;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
    max-width: 230px;
}
#filtres select:focus { outline: 2px solid #2a7de1; border-color: #2a7de1; }
#filtre_reset {
    height: 34px;
    padding: 0 14px;
    border: 1px solid #cbd2d9;
    border-radius: 6px;
    background: #f5f7fa;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}
#filtre_reset:hover { background: #e9eef4; }

/* ---- Popup (mise en page cf. maquette client) ---- */
/* Coins carres pour coller a la maquette client */
.leaflet-popup-content-wrapper { border-radius: 0; }
.leaflet-popup-tip { border-radius: 0; }

.popup-ref { font-size: 13px; line-height: 1.45; }
.popup-titre { font-weight: 700; font-size: 14px; margin-bottom: 3px; color: #e3342f; }
.popup-cat { font-style: italic; color: #486581; margin-bottom: 2px; }
.popup-adresse { color: #334e68; margin-bottom: 8px; }
.popup-ligne { margin: 1px 0; }
.popup-label { font-weight: 700; color: #1f2933; }

/* ---- Bouton carte (plein écran) ---- */
.leaflet-bar .fullscreen-btn {
    display: block;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M2 6V2h4M10 2h4v4M14 10v4h-4M6 14H2v-4' fill='none' stroke='%23333' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.leaflet-bar .fullscreen-btn:hover { background-color: #f4f4f4; }
.leaflet-bar .fullscreen-btn.active { background-color: #3498db; }
.leaflet-bar .fullscreen-btn.active {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M6 2v4H2M10 6h4V2M14 10h-4v4M2 14h4v-4' fill='none' stroke='%23fff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
