/* Style pour les infos utilisateur - Début */
#userInfo {
    margin-top: 16px !important;
    padding: 14px 16px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3) !important;
}

#currentUserName {
    font-size: 14px !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    flex: 1 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

#userInfo button {
    padding: 8px 16px !important;
    background: rgba(255, 255, 255, 0.25) !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 8px !important;
    color: white !important;
    font-size: 13px !important;
    cursor: pointer !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

#userInfo button:hover {
    background: rgba(255, 255, 255, 0.35) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3) !important;
}

#userInfo button:active {
    transform: translateY(0) !important;
}

/* Style pour les infos utilisateur - Fin */