
/**
 * Header Admin
 */
.admin-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    box-shadow: 0 1px 4px rgba(0,98,139,0.04);
    z-index: 1100;
}
.admin-header .header-user {  margin: 0 32px 0 0;
}

.admin-header .logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: #00628B;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.admin-header .logo svg {
    margin-right: 10px;
}

.admin-header .menu-toggle {
    display: none; /* Affiche en mobile seulement */
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    margin-left: 16px;
    height: 32px;
    width: 32px;
}

.admin-header .menu-toggle span {
    display: block;
    height: 3px;
    width: 22px;
    background: #00628B;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.2s;
}

.admin-header .header-user {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #00628B;
    font-weight: 500;
}

.admin-header .header-user .avatar {
    width: 36px;
    height: 36px;
    background: #00628B;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

/* Responsive : menu burger visible en mobile */
@media (max-width: 992px) {
    .admin-header {
        padding: 0 16px;
    }
    .admin-header .menu-toggle {
        display: flex;
    }
}