/* /Components/Pages/Home.razor.rz.scp.css */
.home-shell[b-6gow2ehp5l] {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 60vh;
    }

    .home-content[b-6gow2ehp5l] {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-3);
        max-width: 560px;
        width: 100%;
    }

    .home-content-unauth[b-6gow2ehp5l] {
        align-items: center;
        text-align: center;
    }

    .home-logo[b-6gow2ehp5l] {
        height: 36px;
        width: auto;
    }

    .home-greeting[b-6gow2ehp5l] {
        font-size: 26px;
        font-weight: 700;
        letter-spacing: -0.03em;
        margin: 0;
        line-height: 1.15;
    }

    .home-desc[b-6gow2ehp5l] {
        font-size: 14px;
        color: var(--text-secondary);
        margin: 0 0 var(--space-3);
    }

    .module-grid[b-6gow2ehp5l] {
        display: flex;
        flex-direction: column;
        gap: var(--space-3);
        width: 100%;
        margin-top: var(--space-2);
    }

    .module-card[b-6gow2ehp5l] {
        display: flex;
        align-items: center;
        gap: var(--space-4);
        padding: var(--space-5) var(--space-5);
        background: var(--bg-secondary);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-lg);
        text-decoration: none;
        color: var(--text-primary);
        transition: border-color var(--transition), background-color var(--transition), transform var(--transition);
    }

    .module-card:not(.module-card-disabled):hover[b-6gow2ehp5l] {
        border-color: oklch(100% 0 0 / 0.14);
        background: var(--bg-surface);
        transform: translateY(-1px);
        color: var(--text-primary);
    }

    .module-card-disabled[b-6gow2ehp5l] {
        opacity: 0.45;
        cursor: not-allowed;
        pointer-events: none;
    }

    .module-card-icon[b-6gow2ehp5l] {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-surface);
        border-radius: var(--radius-md);
        color: var(--accent-blue);
        flex-shrink: 0;
    }

    .module-card-icon svg[b-6gow2ehp5l] {
        width: 20px;
        height: 20px;
    }

    .module-card-title[b-6gow2ehp5l] {
        font-size: 14px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: var(--space-2);
        margin-bottom: 2px;
    }

    .module-card-desc[b-6gow2ehp5l] {
        font-size: 12.5px;
        color: var(--text-secondary);
    }

    .module-card-arrow[b-6gow2ehp5l] {
        width: 16px;
        height: 16px;
        color: var(--text-muted);
        margin-left: auto;
        flex-shrink: 0;
        transition: transform var(--transition), color var(--transition);
    }

    .module-card:hover .module-card-arrow[b-6gow2ehp5l] {
        transform: translateX(3px);
        color: var(--accent-blue);
    }

    .module-badge[b-6gow2ehp5l] {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: var(--text-muted);
        border: 1px solid var(--border-color);
        padding: 1px 6px;
        border-radius: 20px;
    }
/* /Components/Pages/LoginScreen.razor.rz.scp.css */
.login-wrapper[b-kwmegak280] {
        position: fixed;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        z-index: 9999;
    }

    /* Subtle ambient glow — purposeful, not decorative */
    .login-wrapper[b-kwmegak280]::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 480px;
        height: 480px;
        background: radial-gradient(
            circle,
            oklch(65% 0.22 330 / 0.08) 0%,
            oklch(62% 0.18 250 / 0.05) 50%,
            transparent 70%
        );
        transform: translate(-50%, -50%);
        pointer-events: none;
        border-radius: 50%;
        will-change: filter;
        filter: blur(60px);
    }

    .login-card[b-kwmegak280] {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-6);
        padding: var(--space-12) var(--space-10);
        background: var(--bg-secondary);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-xl);
        max-width: 400px;
        width: 90%;
        box-shadow: 0 32px 64px oklch(0% 0 0 / 0.4);
    }

    .login-logo[b-kwmegak280] {
        height: 64px;
        width: auto;
    }

    .login-copy[b-kwmegak280] {
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: var(--space-2);
    }

    .login-title[b-kwmegak280] {
        font-size: 20px;
        font-weight: 700;
        letter-spacing: -0.02em;
        margin: 0;
    }

    .login-desc[b-kwmegak280] {
        font-size: 13.5px;
        color: var(--text-secondary);
        line-height: 1.6;
        max-width: 280px;
        margin: 0 auto;
    }

    .google-btn[b-kwmegak280] {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: var(--space-3);
        background: oklch(98% 0.002 0);
        color: oklch(20% 0.005 0);
        font-weight: 600;
        font-size: 14.5px;
        padding: 13px var(--space-6);
        border-radius: var(--radius-sm);
        width: 100%;
        transition: background-color var(--transition), box-shadow var(--transition), transform var(--transition);
        text-decoration: none;
        font-family: var(--font-sans);
        box-shadow: 0 2px 8px oklch(100% 0 0 / 0.08);
    }

    .google-btn:hover[b-kwmegak280] {
        background: oklch(95% 0.002 0);
        box-shadow: 0 4px 16px oklch(100% 0 0 / 0.12);
        transform: translateY(-1px);
        color: oklch(20% 0.005 0);
    }

    .google-btn:active[b-kwmegak280] {
        transform: translateY(0);
    }

    .google-icon[b-kwmegak280] {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
/* /Features/OneClickDashboard/Components/ChartFullscreenModal.razor.rz.scp.css */
.chart-modal-overlay[b-zrnlk2egz5] {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: oklch(0% 0 0 / 0.65);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
    animation: chart-overlay-in-b-zrnlk2egz5 0.15s var(--ease-out);
}

@keyframes chart-overlay-in-b-zrnlk2egz5 {
    from { opacity: 0; }
    to { opacity: 1; }
}

.chart-modal-panel[b-zrnlk2egz5] {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    width: min(92vw, 1200px);
    height: min(85vh, 800px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 24px 48px oklch(0% 0 0 / 0.5);
    animation: chart-panel-in-b-zrnlk2egz5 0.18s var(--ease-out);
}

@keyframes chart-panel-in-b-zrnlk2egz5 {
    from { opacity: 0; transform: scale(0.96) translateY(8px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.chart-modal-header[b-zrnlk2egz5] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-5);
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.chart-modal-title[b-zrnlk2egz5] {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
    margin: 0;
}

.chart-modal-close[b-zrnlk2egz5] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background-color var(--transition), color var(--transition);
}

.chart-modal-close:hover[b-zrnlk2egz5] {
    background: var(--surface-container);
    color: var(--text-primary);
}

.chart-modal-body[b-zrnlk2egz5] {
    flex: 1;
    min-height: 0;
    padding: var(--space-4) var(--space-5) var(--space-5);
    position: relative;
}

.chart-modal-body canvas[b-zrnlk2egz5] {
    width: 100% !important;
    height: 100% !important;
}
/* /Features/OneClickDashboard/Components/DateInput.razor.rz.scp.css */
.date-input-wrap[b-k49lh1hhs6] {
    position: relative;
    display: flex;
    align-items: center;
}

.date-input-field[b-k49lh1hhs6] {
    height: 32px;
    font-size: 12px;
    padding: 0 32px 0 8px;
    width: 110px;
}

.date-input-calendar-btn[b-k49lh1hhs6] {
    position: absolute;
    right: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background-color var(--transition);
}

.date-input-calendar-btn:hover[b-k49lh1hhs6] {
    color: var(--text-primary);
    background: var(--surface-container);
}

.date-input-popover[b-k49lh1hhs6] {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 50;
    width: 240px;
    padding: var(--space-3);
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.date-input-popover-header[b-k49lh1hhs6] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-2);
}

.date-input-month-label[b-k49lh1hhs6] {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: capitalize;
}

.date-input-nav-btn[b-k49lh1hhs6] {
    width: 24px;
    height: 24px;
    border: none;
    background: var(--surface-container);
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
}

.date-input-nav-btn:hover[b-k49lh1hhs6] {
    color: var(--text-primary);
}

.date-input-weekdays[b-k49lh1hhs6],
.date-input-days[b-k49lh1hhs6] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.date-input-weekdays[b-k49lh1hhs6] {
    margin-bottom: var(--space-1);
}

.date-input-weekdays span[b-k49lh1hhs6] {
    font-size: 10px;
    text-align: center;
    color: var(--text-muted);
    font-weight: 600;
}

.date-input-day[b-k49lh1hhs6] {
    height: 28px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.date-input-day:hover[b-k49lh1hhs6] {
    background: var(--surface-container);
    color: var(--text-primary);
}

.date-input-day.selected[b-k49lh1hhs6] {
    background: var(--accent-blue);
    color: white;
}

.date-input-day.today:not(.selected)[b-k49lh1hhs6] {
    border: 1px solid var(--accent-blue);
}

.date-input-day-empty[b-k49lh1hhs6] {
    pointer-events: none;
}
/* /Features/OneClickDashboard/Components/InstanceBarChart.razor.rz.scp.css */
.chart-card[b-tr9r2hk5va] {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    height: 100%;
    min-height: 320px;
}

.chart-card-header[b-tr9r2hk5va] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    flex-shrink: 0;
}

.chart-card-title[b-tr9r2hk5va] {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0;
}

.chart-expand-btn[b-tr9r2hk5va] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color var(--transition), color var(--transition);
}

.chart-expand-btn:hover[b-tr9r2hk5va] {
    background: var(--surface-container);
    color: var(--text-primary);
}

.chart-canvas-wrapper[b-tr9r2hk5va] {
    position: relative;
    flex: 1;
    min-height: 240px;
    width: 100%;
}

.chart-skeleton[b-tr9r2hk5va] {
    flex: 1;
    min-height: 240px;
    width: 100%;
}

.chart-empty[b-tr9r2hk5va] {
    flex: 1;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    color: var(--text-muted);
    font-size: 13px;
}

.chart-empty p[b-tr9r2hk5va] {
    margin: 0;
}
/* /Features/OneClickDashboard/Components/MetricCard.razor.rz.scp.css */
.metric-card[b-a83nb4wtil] {
        background-color: var(--bg-secondary);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-lg);
        padding: var(--space-6);
        display: flex;
        flex-direction: column;
        gap: var(--space-2);
        transition: border-color var(--transition);
    }

    .metric-card:hover[b-a83nb4wtil] {
        border-color: oklch(100% 0 0 / 0.12);
    }

    .metric-label[b-a83nb4wtil] {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--text-secondary);
    }

    .metric-value[b-a83nb4wtil] {
        font-size: 30px;
        font-weight: 700;
        font-family: var(--font-mono);
        color: var(--text-primary);
        letter-spacing: -0.03em;
        line-height: 1;
        margin: var(--space-1) 0;
    }

    .metric-trend[b-a83nb4wtil] {
        font-size: 12.5px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .metric-trend.positive[b-a83nb4wtil] { color: var(--success); }
    .metric-trend.negative[b-a83nb4wtil] { color: var(--danger); }

    .metric-trend-context[b-a83nb4wtil] {
        color: var(--text-muted);
        font-weight: 400;
    }

    .metric-objective[b-a83nb4wtil] {
        margin-top: var(--space-3);
        display: flex;
        flex-direction: column;
        gap: var(--space-1);
    }

    .metric-objective-bar-bg[b-a83nb4wtil] {
        height: 4px;
        background-color: var(--bg-surface);
        border-radius: 2px;
        overflow: hidden;
    }

    .metric-objective-bar-fill[b-a83nb4wtil] {
        height: 100%;
        border-radius: 2px;
        transition: width 0.6s var(--ease-out);
    }

    .metric-objective-label[b-a83nb4wtil] {
        font-size: 11px;
        color: var(--text-muted);
        font-family: var(--font-mono);
    }
/* /Features/OneClickDashboard/Components/ObjectivesTable.razor.rz.scp.css */
.objectives-card[b-6c584nai39] {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.objectives-header[b-6c584nai39] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.objectives-title[b-6c584nai39] {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0;
}

.objectives-count[b-6c584nai39] {
    font-size: 12px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.objectives-skeleton[b-6c584nai39] {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.objectives-empty[b-6c584nai39] {
    color: var(--text-secondary);
    font-size: 13px;
    margin: var(--space-4) 0;
    padding: var(--space-6) 0;
    text-align: center;
}

.objectives-empty a[b-6c584nai39] {
    color: var(--accent-blue);
}

.objectives-list[b-6c584nai39] {
    display: flex;
    flex-direction: column;
}

.objective-block[b-6c584nai39] {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: var(--space-4);
    align-items: start;
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--border-color);
}

.objective-block:last-child[b-6c584nai39] {
    border-bottom: none;
    padding-bottom: 0;
}

.objective-block:first-child[b-6c584nai39] {
    padding-top: 0;
}

.objective-block-name[b-6c584nai39] {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
    padding-top: 28px;
}

.objective-block-grid[b-6c584nai39] {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    min-width: 0;
}

.objective-grid-header[b-6c584nai39],
.objective-grid-row[b-6c584nai39] {
    display: grid;
    grid-template-columns: 100px 90px 90px 1fr 100px;
    gap: var(--space-3);
    align-items: center;
}

.objective-grid-header[b-6c584nai39] {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    padding-bottom: var(--space-1);
}

.objective-grid-row[b-6c584nai39] {
    padding: var(--space-2) 0;
}

.objective-metric-label[b-6c584nai39] {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

.objective-value[b-6c584nai39] {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-secondary);
    white-space: nowrap;
}

.objective-progress[b-6c584nai39] {
    min-width: 0;
}

.progress-wrap[b-6c584nai39] {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.progress-bg[b-6c584nai39] {
    flex: 1;
    height: 6px;
    background-color: var(--surface-container-high);
    border-radius: 3px;
    overflow: hidden;
    min-width: 80px;
}

.progress-fill[b-6c584nai39] {
    height: 100%;
    min-width: 2px;
    border-radius: 3px;
    transition: width 0.6s var(--ease-out);
}

.progress-pct[b-6c584nai39] {
    font-size: 11px;
    font-family: var(--font-mono);
    color: var(--text-muted);
    width: 32px;
    text-align: right;
    flex-shrink: 0;
}

.objective-grid-row .chip[b-6c584nai39] {
    justify-self: start;
    font-size: 11px;
}

@media (max-width: 800px) {
    .objective-block[b-6c584nai39] {
        grid-template-columns: 1fr;
        gap: var(--space-2);
    }

    .objective-block-name[b-6c584nai39] {
        padding-top: 0;
    }

    .objective-grid-header[b-6c584nai39] {
        display: none;
    }

    .objective-grid-row[b-6c584nai39] {
        grid-template-columns: 1fr;
        gap: var(--space-1);
        padding: var(--space-3);
        background: var(--bg-surface);
        border-radius: var(--radius-sm);
    }

    .objective-metric-label[b-6c584nai39] {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: var(--text-muted);
    }
}
/* /Features/OneClickDashboard/Components/TimeSeriesChart.razor.rz.scp.css */
.chart-card[b-u9hye0lg00] {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    height: 100%;
    min-height: 320px;
}

.chart-card-header[b-u9hye0lg00] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    flex-shrink: 0;
}

.chart-card-title[b-u9hye0lg00] {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0;
}

.chart-expand-btn[b-u9hye0lg00] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color var(--transition), color var(--transition);
}

.chart-expand-btn:hover[b-u9hye0lg00] {
    background: var(--surface-container);
    color: var(--text-primary);
}

.chart-canvas-wrapper[b-u9hye0lg00] {
    position: relative;
    flex: 1;
    min-height: 300px;
    width: 100%;
}

.chart-skeleton[b-u9hye0lg00] {
    flex: 1;
    min-height: 300px;
    width: 100%;
}

.chart-empty[b-u9hye0lg00] {
    flex: 1;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    color: var(--text-muted);
    font-size: 13px;
}

.chart-empty p[b-u9hye0lg00] {
    margin: 0;
}
/* /Features/OneClickDashboard/Pages/Dashboard.razor.rz.scp.css */
.dashboard-container[b-6gl2r2skhf] {
        display: flex;
        flex-direction: column;
        gap: var(--space-6);
    }

    .dashboard-header[b-6gl2r2skhf] {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: var(--space-4);
        flex-wrap: wrap;
    }

    .dashboard-title[b-6gl2r2skhf] {
        font-size: 22px;
        font-weight: 700;
        letter-spacing: -0.02em;
        margin: 0 0 var(--space-1) 0;
        color: var(--text-primary);
    }

    .dashboard-subtitle[b-6gl2r2skhf] {
        font-size: 13px;
        color: var(--text-muted);
        margin: 0;
        font-family: var(--font-mono);
    }

    .dashboard-header-actions[b-6gl2r2skhf] {
        display: flex;
        gap: var(--space-3);
        align-items: center;
        flex-wrap: wrap;
    }

    .custom-date-group[b-6gl2r2skhf] {
        display: flex;
        gap: 8px;
        align-items: center;
        background: transparent;
        border: none;
    }

    .custom-date-separator[b-6gl2r2skhf] {
        color: var(--text-muted);
        font-size: 12px;
    }

    .custom-date-apply[b-6gl2r2skhf] {
        height: 32px;
        font-size: 12px;
        padding: 0 12px;
    }

    .instance-filter-chip[b-6gl2r2skhf] {
        cursor: pointer;
        transition: opacity 0.2s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .instance-filter-dot[b-6gl2r2skhf] {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .metrics-grid[b-6gl2r2skhf] {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: var(--space-4);
    }

    .charts-grid[b-6gl2r2skhf] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-4);
        align-items: stretch;
    }

    @@media (max-width: 900px) {
        .charts-grid[b-6gl2r2skhf] { grid-template-columns: 1fr; }
    }

    @@media (max-width: 600px) {
        .dashboard-header[b-6gl2r2skhf] { flex-direction: column; }
        .dashboard-header-actions[b-6gl2r2skhf] { width: 100%; justify-content: space-between; }
    }
/* /Features/OneClickDashboard/Pages/Settings.razor.rz.scp.css */
    .settings-container[b-tneruouwt2] {
        display: flex;
        flex-direction: column;
        gap: var(--space-6);
        max-width: 100%;
    }

    .settings-page-header[b-tneruouwt2] {
        display: flex;
        flex-direction: column;
        gap: var(--space-3);
    }

    .settings-back[b-tneruouwt2] {
        display: inline-flex;
        align-items: center;
        gap: var(--space-2);
        color: var(--text-secondary);
        font-size: 13px;
        font-weight: 500;
        transition: color var(--transition);
    }

    .settings-back:hover[b-tneruouwt2] {
        color: var(--text-primary);
    }

    .settings-page-title[b-tneruouwt2] {
        font-size: 22px;
        font-weight: 700;
        letter-spacing: -0.02em;
        margin: 0;
    }

    .settings-grid[b-tneruouwt2] {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    @media (min-width: 900px) {
        .settings-grid[b-tneruouwt2] { grid-template-columns: 1fr 1fr; }
    }

    .settings-section[b-tneruouwt2] {
        display: flex;
        flex-direction: column;
        gap: var(--space-5);
    }

    .settings-section-header[b-tneruouwt2] {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: var(--space-4);
    }

    .settings-section-title[b-tneruouwt2] {
        font-size: 15px;
        font-weight: 600;
        margin: 0 0 var(--space-1);
    }

    .settings-section-desc[b-tneruouwt2] {
        font-size: 12.5px;
        color: var(--text-secondary);
        margin: 0;
    }

    .settings-rows[b-tneruouwt2] {
        display: flex;
        flex-direction: column;
        gap: var(--space-3);
        flex: 1;
    }

    .settings-row[b-tneruouwt2] {
        display: flex;
        gap: var(--space-3);
        align-items: flex-end;
        background: var(--bg-primary);
        padding: var(--space-3);
        border-radius: var(--radius-md);
        border: 1px solid var(--border-color);
        transition: border-color var(--transition);
    }

    .settings-row:hover[b-tneruouwt2] {
        border-color: oklch(100% 0 0 / 0.12);
    }

    .settings-row-fields[b-tneruouwt2] {
        display: flex;
        gap: var(--space-3);
        flex: 1;
        flex-wrap: wrap;
        min-width: 0;
    }

    .settings-row-fields .form-group[b-tneruouwt2] {
        flex: 1;
        min-width: 120px;
    }

    .settings-empty[b-tneruouwt2] {
        color: var(--text-muted);
        font-size: 13px;
        text-align: center;
        padding: var(--space-6) 0;
        margin: 0;
    }


    .exchange-add-row[b-tneruouwt2] {
        display: flex;
        gap: var(--space-4);
        padding: var(--space-4);
        background: var(--bg-primary);
        border-radius: var(--radius-md);
        border: 1px solid var(--border-color);
        flex-wrap: wrap;
    }

    .exchange-add-row .form-group[b-tneruouwt2] {
        flex: 1;
        min-width: 100px;
    }

    .exchange-rates-list[b-tneruouwt2] {
        display: flex;
        flex-direction: column;
        gap: var(--space-2);
    }

    .exchange-rate-row[b-tneruouwt2] {
        display: flex;
        align-items: center;
        gap: var(--space-3);
        padding: var(--space-2) var(--space-3);
        border-radius: var(--radius-sm);
        transition: background-color var(--transition);
    }

    .exchange-rate-row:hover[b-tneruouwt2] {
        background: var(--bg-surface);
    }

    .exchange-currency[b-tneruouwt2] {
        font-weight: 700;
        font-family: var(--font-mono);
        color: var(--accent-yellow);
        width: 48px;
        flex-shrink: 0;
    }

    .exchange-label[b-tneruouwt2] {
        font-size: 12px;
        color: var(--text-muted);
        flex-shrink: 0;
    }

    .exchange-input[b-tneruouwt2] {
        max-width: 140px;
    }

    .color-picker-row[b-tneruouwt2] {
        display: flex;
        align-items: center;
        gap: var(--space-2);
        height: 38px;
    }

    .color-picker-input[b-tneruouwt2] {
        width: 38px;
        height: 38px;
        padding: 2px;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-sm);
        background: var(--bg-surface);
        cursor: pointer;
    }

    .color-preview[b-tneruouwt2] {
        width: 16px;
        height: 16px;
        border-radius: 50%;
        border: 1px solid var(--border-color);
        flex-shrink: 0;
    }

    .exchange-rate-notice[b-tneruouwt2] {
        font-size: 12px;
        color: var(--text-muted);
        margin: var(--space-2) 0 var(--space-3);
        line-height: 1.5;
    }

    .exchange-rate-notice strong[b-tneruouwt2] {
        color: var(--text-secondary);
    }

