.more-container {
    font-family: 'Nunito Sans', sans-serif;
}

/* ===== USER HEADER ===== */
.more-user-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.more-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.more-avatar i {
    font-size: 24px;
    color: var(--text-light);
}

.more-user-info {
    display: flex;
    flex-direction: column;
}

.more-user-info h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.more-profile-link {
    font-size: 13px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.more-profile-link:hover {
    text-decoration: underline;
}

/* ===== SECTIONS ===== */
.more-section {
    margin-bottom: 24px;
}

.more-section-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-label);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 10px 4px;
}

/* ===== LIST ===== */
.more-list {
    background: var(--background-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.more-item {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    text-decoration: none;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s;
}

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

.more-item:hover {
    background-color: var(--background-secondary);
}

.more-item-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(27, 125, 194, 0.1), rgba(13, 62, 114, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    flex-shrink: 0;
}

.more-item-icon i {
    font-size: 16px;
    color: var(--primary-color);
}

.more-item-icon.warning {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1), rgba(243, 156, 18, 0.15));
}

.more-item-icon.warning i {
    color: var(--warning-color);
}

.more-item-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.more-item-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.more-item-desc {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
}

.more-item-arrow {
    color: var(--text-label);
    font-size: 13px;
}

/* ===== LOGOUT ===== */
.more-logout {
    text-align: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.more-logout-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--danger-color);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 10px;
    transition: background 0.2s;
}

.more-logout-btn:hover {
    background: rgba(217, 83, 79, 0.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 400px) {
    .more-avatar {
        width: 48px;
        height: 48px;
    }

    .more-avatar i {
        font-size: 20px;
    }

    .more-user-info h4 {
        font-size: 16px;
    }
}
