.navBarBox {
    margin-top: 2em;
    width: 100%;
    background-color: rgb(240, 174, 9);
    display: flex;
    align-items: center;
    min-height: 3em;
    justify-content: space-between;
    font-weight: bold;
    font-size: 1.5em;
    position: fixed;
}

.nav-links {
    display: flex;
}

.nav-link {
    margin-right: 1em;
    color: white;
    text-decoration: none;
}

/* Styles pour le bouton de menu */
.menu-toggle {
    display: none;
    font-size: 1.5em;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Affichage mobile */
@media screen and (max-width: 750px) {
    .menu-toggle {
        display: block;
        background-color: rgb(248, 126, 12);
        color: white;
        border-radius: 0.5em;
        margin: auto 1em;
        border: 1px solid white;
    }

    .navBarBox{
        justify-content: space-between;
    }

    .nav-links {
        display: none !important;
        justify-content: space-between;
        flex-direction: row;
        width: 100%;
        background-color: rgb(240, 174, 9);
        color: black;
        padding: 1em;
        position: absolute;
        /* top: 4em; */
        left: 0;
    }

    .nav-links.show {
        display: flex !important;
        z-index: 1;
        margin-top: 10em;
        flex-direction: column;
    }

    .close-toggle {
        align-self: flex-end;
        background: none;
        border: none;
        color: white;
        font-size: 1.5em;
        cursor: pointer;
    }

    .nav-link {
        margin: 0.5em 0;
        color:white;
    }

    .deconnexionLink{
        color: white;
        font-weight: bold;
    }


}
