/* Fond sombre derrière la fenêtre modale */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
}

/* Réglage taille et position de la fenêtre modale */
.modal-box {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-card);
    z-index: 2100;
    width: 90%;
    max-width: 700px;
    border-radius: 12px;
    overflow: hidden;
}

/* Barre du haut du modal : titre + bouton fermer */
.modal-header-nav {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Bouton fermer du modal */
.close-btn-inline {
    font-size: 30px;
    cursor: pointer;
}

/* Réglage de l'intérieur des contenus du modal */
.modal-content-area {
    padding-top: 15px;
    padding-bottom: 20px;
    padding-left: 50px;
    padding-right: 50px;
    max-height: 70vh;
    overflow-y: auto;
}

/* Version sur mobile ---- Réglage de l'intérieur des contenus du modal*/
@media (max-width: 600px) {
        .modal-content-area {
            padding-left: 20px;
            padding-right: 20px;
            max-height: 75vh;
        }
}