
.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between; /* Espace les éléments uniformément */
    align-items: center; /* Aligne verticalement au centre */
    flex-wrap: wrap; /* Permet le retour à la ligne sur petits écrans */
    padding: 10px;
    background-color: var(--blancsite);
    height:10%;
    gap: 10px; /* Espace entre les éléments */
}

/* Logo */
.header #logo {
    height:90%; /* Ajustez selon la taille de votre logo */
    margin-right: 10px;
}

/* Boutons "Ouvrir/Créer votre compte" */
.header button {
    background: none;
    border: none;
    padding: 0;
    margin: 0 5px;
}

/* SVG dans les boutons */
.header button svg {
    display: block;
}

/* Menu burger et bouton de fermeture */
.header #mySidenav {
    display: block;
    gap: 5px;
}

/* Images (whisky, ukraine) */
.header img[id="whisky"], .header img[id="ukraine"] {
    width: 10%; /* Ajustez selon vos besoins */
}

/* Info client (heure + nom) */
.header #infoClient {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 0.9rem;
    text-align: right;
}

.header #infoClient p {
    margin: 0;
    padding: 0 5px;
}

/* --- Media Queries pour le header --- */
@media only screen and (max-width: 768px) {
    .header {
        justify-content: space-around; /* Répartit l'espace sur petits écrans */
        /*flex-wrap: wrap;*/
        flex-direction:column;
    }

    .header #infoClient {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .header button {
        margin: 5px;
    }
}