/* Settings — the page bar on top, then uppercase section labels and grouped
   white cards rounded 20 on the surface. */

.set-root {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
}

.set-section {
    margin: 12px 0 0 4px;
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.set-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    border-radius: 20px;
    background: var(--surface-raised);
    box-shadow: 0 2px 10px rgba(22, 30, 57, 0.06);
}

.set-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.set-row__title {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.set-row__sub {
    font-family: var(--font-family);
    font-size: 13px;
    color: var(--text-secondary);
}

.set-row__value {
    font-family: var(--font-family);
    font-size: 14px;
    color: var(--text-secondary);
    white-space: nowrap;
}

.set-meter {
    height: 8px;
    border-radius: var(--r-full);
    background: var(--surface-sunken);
    overflow: hidden;
}

.set-meter__fill {
    height: 100%;
    border-radius: var(--r-full);
    background: var(--accent-action);
}

.set-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 4px 0;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.set-nav__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.set-nav__arrow {
    display: inline-flex;
    color: var(--text-secondary);
    flex: 0 0 auto;
}

.set-nav:hover .set-nav__arrow {
    color: var(--text-primary);
}
