/* Navigation utilisateur */
.user-navigation {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: inherit;
}

.user-greeting {
    color: #2c3e50;
    font-weight: 500;
    font-size: 14px;
    margin-right: 5px;
}

.nav-link {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-link:hover {
    background-color: #f8f9fa;
    border-color: #3498db;
    color: #2980b9;
}

/* Style spécial pour le bouton déconnexion */
.nav-link:last-child {
    color: #e74c3c;
}

.nav-link:last-child:hover {
    background-color: #fff5f5;
    border-color: #e74c3c;
    color: #c0392b;
}

/* Responsive */
@media (max-width: 768px) {
    .user-navigation {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .user-greeting {
        font-size: 13px;
    }
    
    .nav-link {
        font-size: 13px;
        padding: 6px 10px;
    }
}