/**
 * Divi Landing Pages - Minimal styles pour header/footer
 * NE PAS toucher aux styles Divi - ils gèrent le contenu
 */

/* Container landing page - aucune interférence avec Divi */
.landing-page-content {
    width: 100%;
}

/* S'assurer que le body a un fond blanc */
body.single-landing-pages {
    background-color: #fff;
}

/* ============================================
   Masquer les modales du header par defaut
   ============================================ */
#centerListModale,
#formModale,
#rdvOverlayCentersList,
#formModaleOverlay {
    display: none;
    position: fixed;
    z-index: 99999;
}

#centerListModale,
#formModale {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 90%;
    width: 500px;
}

#rdvOverlayCentersList,
#formModaleOverlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* Afficher quand ouvert */
#centerListModale.is-open,
#formModale.is-open,
#rdvOverlayCentersList.is-open,
#formModaleOverlay.is-open {
    display: block;
}

/* Boutons fermer */
#centerListModale #closeCenterListBtn,
#formModale #closeFormModale {
    position: absolute;
    right: 15px;
    top: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

#centerListModale #closeCenterListBtn:hover,
#formModale #closeFormModale:hover {
    color: #000;
}
