.user-menu {
    position: absolute;
    top: 20px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
}

.user-name {
    font-size: 14px;
    font-weight: 500;
}

.user-actions {
    display: flex;
    gap: 10px;
}

.user-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
}

.user-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.logout-btn {
    background: rgba(237, 76, 92, 0.2);
}

.logout-btn:hover {
    background: rgba(237, 76, 92, 0.3);
}

.user-info:hover {
    transform: translateY(-1px);
}

.user-info:hover .user-avatar {
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.user-profile-modal {
    max-width: 400px;
    text-align: center;
}

.user-profile-content {
    padding: 30px 20px;
}

.user-profile-avatar {
    margin-bottom: 25px;
}

.user-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 600;
    color: white;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.3);
}

.user-profile-info {
    text-align: left;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item label {
    font-weight: 600;
    color: #333;
    min-width: 80px;
    margin-right: 15px;
}

.info-item span {
    color: #666;
    flex: 1;
    word-break: break-word;
}

.dark .user-btn {
    background: rgba(255,255,255,0.12);
    color: #e0e0e0;
}

.dark .logout-btn {
    background: rgba(237, 76, 92, 0.25);
}

