/* Styles pour le profil utilisateur dans la navigation desktop */
.desktop-nav-profile {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px;
    border-radius: 20px;
    background: rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.desktop-nav-profile:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-1px);
}

.desktop-nav-profile-photo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.desktop-nav-profile:hover .desktop-nav-profile-photo {
    border-color: rgba(102, 126, 234, 0.6);
    transform: scale(1.05);
}

.desktop-nav-profile-name {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.desktop-nav-profile:hover .desktop-nav-profile-name {
    color: #1f2937;
}

/* Responsive pour le profil */
@media (max-width: 1200px) {
    .desktop-nav-profile-name {
        max-width: 80px;
    }
}

@media (max-width: 1024px) {
    .desktop-nav-profile-name {
        display: none;
    }
    
    .desktop-nav-profile {
        padding: 4px;
    }
    
    .desktop-nav-profile-photo {
        width: 24px;
        height: 24px;
    }
}
