.user-header {
    background: var(--card-bg);
    padding: 24px 16px;
    margin-bottom: 12px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.avatar {
    width: 60px;
    height: 60px;
    background: #E5E5EA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-light);
}

.profile { flex: 1; }
.profile h3 { font-size: 18px; margin-bottom: 2px; }
.profile p { font-size: 12px; color: var(--text-light); }

.btn-checkin {
    padding: 6px 12px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.user-stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item span { font-size: 18px; font-weight: 700; display: block; }
.stat-item p { font-size: 11px; color: var(--text-light); }

.menu-list {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #F2F2F7;
}

.menu-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-left i {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF !important;
    font-size: 16px;
}

.bg-blue { background-color: #007AFF !important; }
.bg-green { background-color: #34C759 !important; }
.bg-orange { background-color: #FF9500 !important; }
.bg-gray { background-color: #8E8E93 !important; }
.arrow { color: #C7C7CC; font-size: 12px; }
