/* Settings panel: sections, setting groups, audio sliders, about (extracted from inline). */

.v2-settings {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: var(--font-ui);
    color: var(--text-primary);
    height: 100%;
    overflow-y: auto;
}

.v2-settings-section-header {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.v2-setting-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.v2-setting-label {
    font-size: 13px;
    color: var(--text-primary);
}

.v2-settings-desc {
    font-size: 10px;
    color: var(--text-muted);
    margin-bottom: 6px;
    line-height: 1.4;
}

.v2-settings-note {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: -8px;
    margin-bottom: 12px;
    padding-left: 4px;
}

.v2-settings-slider-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.v2-settings-slider {
    width: 100px;
}

.v2-settings-slider-label {
    font-size: 12px;
    min-width: 55px;
    color: var(--text-muted);
}

.v2-settings-about {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

.v2-settings-about-muted {
    opacity: 0.6;
}
