/* ── Settings layout ────────────────────────────────── */

.settings-layout {
    display: flex;
    min-height: calc(100vh - 56px);
    background: #f5f6fa;
}

/* ── Sidebar ─────────────────────────────────────────── */

.settings-sidebar {
    width: 220px;
    min-width: 220px;
    background: #fff;
    border-right: 1px solid #e8edf2;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-logo {
    font-size: 15px;
    font-weight: 700;
    color: #2f3640;
    padding: 0 20px 16px;
    border-bottom: 1px solid #f0f3f8;
    margin-bottom: 8px;
}

.sidebar-section {
    font-size: 10px;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: .8px;
    padding: 8px 20px 4px;
}

.sidebar-link {
    display: block;
    padding: 8px 20px;
    color: #444;
    text-decoration: none;
    font-size: 14px;
    border-left: 3px solid transparent;
    transition: background .15s, color .15s;
}

.sidebar-link:hover {
    background: #f5f6fa;
    color: #00a8ff;
}

.sidebar-link.active {
    background: #eef8ff;
    color: #00a8ff;
    border-left-color: #00a8ff;
    font-weight: 600;
}

.sidebar-divider {
    height: 1px;
    background: #f0f3f8;
    margin: 8px 0;
}

/* ── Content area ────────────────────────────────────── */

.settings-content {
    flex: 1;
    padding: 28px 32px;
    min-width: 0;
}

.settings-content h1 {
    margin: 0 0 24px;
    font-size: 20px;
    color: #2f3640;
}
