body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
}

/*header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #01305f;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: 130px; 
    position: relative;
}*/
header {
    width: 100%;
    height: 130px;
    background-color: #153D64;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    height: calc(96px - 1px); /* Ajuster la hauteur du logo en fonction de la hauteur du header et des marges */
    width: auto;
    margin: 10px 30px; /* Marge de 10px en haut et en bas */
}

.title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 28px;
    color: white;
}

.welcome {
    margin-right: 10px; /* Marge à droite */
    text-align: right;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
}

.logout-btn {
    margin-top: 5px;
    padding: 5px 10px;
    background-color: #2e0509;
    color: white;
    border: none;
    cursor: pointer;
}

.vertical-menu {
    position: fixed;
    left: 0;
    top: 130px; /* Ajustez cette valeur selon la hauteur de votre header */
    height: calc(100% - 100px); /* Ajustez cette valeur selon la hauteur de votre header */
    width: 180px; /* Ajustez la largeur selon vos besoins */
    background-color: #01305f;
    padding: 10px;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centrer le contenu horizontalement */
}

.menu-btn {
    width: 180px;
    padding: 10px;
    /*margin-bottom: 5px;*/
    border: none;
    background-color: #0004ff;
    color: white;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: bold;
}

.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    width: 100%; /* Assurez-vous que le sous-menu prend toute la largeur du menu vertical */
}

.submenu.show {
    max-height: 500px; /* Ajustez cette valeur selon la hauteur de votre contenu */
}

.submenu button {
    width: 130px;
    padding: 8px;
    margin: 15px auto; /* Ajouter plus d'espace entre les boutons */
    border: none;
    background-color: #0071b3;
    color: white;
    cursor: pointer;
    border-radius: 20px;
    font-size: 16px;
    font-weight: bold;
    display: block; /* Assurez-vous que le bouton est un bloc pour centrer correctement */
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-content {
    margin-left: 200px; /* Doit correspondre à la largeur du menu */
    padding: 20px;
}