/* custom_header.css */

/* Réinitialise les balises de menu vertical */
.sidebar a,
.sidebar li {
    display: flex !important;
    align-items: center;
    flex-direction: row;
    text-align: left;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
}

.sidebar a:hover {
    background-color: #f5f5f5;
    text-decoration: none;
}

/* Force le menu horizontal du haut à s'aligner correctement */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fdfdfd;
    padding: 10px 20px;
    border-bottom: 1px solid #ccc;
}

.topbar .menu {
    display: flex;
    gap: 20px;
}

.topbar .menu a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
}

.topbar .menu a:hover {
    color: #000;
}

/* Pour l'utilisateur à droite */
.topbar .user {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Icônes (si FontAwesome) */
.sidebar i,
.topbar i {
    margin-right: 8px;
}
