@font-face {
    font-family: 'Roboto';
    src: url('./assets/fonts/roboto/roboto-latin.woff2') format('woff2');
    font-weight: 300 900;
    font-style: normal;
    font-display: swap;
}

        :root {
            --brand-blue: #00549f;
            --brand-yellow: #ffed00;
            --text-main: #1e293b;
            --text-muted: #5f6b7a;
            --bg-page: #eef2f6;
            --bg-card: #ffffff;
            --success: #13804d;
            --danger: #c62828;
            --diesel-strong: #c98585;
            --diesel-soft: #fdf4f4;
            --diesel-border: #ecd7d7;
            --ev-strong: #7d9cf0;
            --ev-soft: #f4f7ff;
            --ev-border: #d9e2fb;
        }

        body {
            font-family: 'Roboto', Arial, sans-serif;
            background-color: var(--bg-page);
            color: var(--text-main);
            margin: 0;
            padding: 40px 20px;
            line-height: 1.5;
        }

        html,
        body.iframe-page {
            background: #ffffff;
        }

        body.iframe-page {
            padding: 0;
        }

        .sr-only {
            position: absolute !important;
            width: 1px !important;
            height: 1px !important;
            padding: 0 !important;
            margin: -1px !important;
            overflow: hidden !important;
            clip: rect(0, 0, 0, 0) !important;
            white-space: nowrap !important;
            border: 0 !important;
        }

        .wrapper {
            max-width: 1280px;
            margin: 0 auto;
        }

        body.iframe-page .wrapper {
            padding: 0 0 34px;
            box-sizing: border-box;
        }

        body.iframe-page .calculator-card {
            border: 1px solid #e5e7eb;
            box-shadow: none;
        }

        body.iframe-page .controls-panel {
            max-height: none;
            overflow: visible;
        }

        @media (max-width: 1320px) {
            body.iframe-page .wrapper {
                padding: 0 16px 34px;
            }
        }

        @media (max-width: 560px) {
            body.iframe-page .wrapper {
                padding: 0 0 28px;
            }

            .controls-panel,
            .results-panel {
                padding: 22px 16px;
            }
        }

        header {
            text-align: center;
            margin-bottom: 30px;
        }

        header h1 {
            font-weight: 800;
            font-size: 2.4rem;
            color: var(--brand-blue);
            margin: 0 0 10px 0;
            letter-spacing: -0.02em;
        }

        header p {
            color: var(--text-muted);
            font-size: 1.05rem;
            max-width: 760px;
            margin: 0 auto;
        }

        .calculator-card {
            background: var(--bg-card);
            border-radius: 0;
            box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
            overflow: visible;
            display: grid;
            grid-template-columns: minmax(420px, 1fr) 1fr;
            align-items: stretch;
        }

        @media (max-width: 1099px) {
            .calculator-card {
                grid-template-columns: 1fr;
            }
        }

        .controls-panel {
            padding: 34px 34px 30px 34px;
            border-right: 1px solid #e5e7eb;
            max-height: 86vh;
            overflow: auto;
        }

        @media (max-width: 1099px) {
            .controls-panel {
                border-right: none;
                border-bottom: 1px solid #e5e7eb;
                max-height: none;
            }
        }

        .section-label {
            text-transform: uppercase;
            font-size: 0.73rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            color: var(--brand-blue);
            margin: 0 0 16px;
            display: block;
        }

        .base-assumptions {
            margin: 0 0 18px 0;
            padding: 0;
            border: 1px solid #d7e3ee;
            background: #f7fbff;
            color: var(--text-muted);
            font-size: 0.82rem;
            line-height: 1.5;
        }

        .base-assumptions > summary {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 12px 16px;
            color: var(--brand-blue);
            font-weight: 800;
            cursor: pointer;
            list-style: none;
        }

        .base-assumptions > summary::-webkit-details-marker {
            display: none;
        }

        .base-assumptions > summary::after {
            content: "+";
            color: var(--brand-blue);
            font-size: 1rem;
            font-weight: 800;
            line-height: 1;
            flex: 0 0 auto;
        }

        .base-assumptions[open] > summary {
            border-bottom: 1px solid #d7e3ee;
        }

        .base-assumptions[open] > summary::after {
            content: "-";
        }

        .base-assumptions-content {
            padding: 12px 16px 14px 16px;
        }

        .base-assumptions-content p {
            margin: 0 0 10px 0;
        }

        .base-assumptions-content p:last-child {
            margin-bottom: 0;
        }

        .input-group {
            margin-bottom: 24px;
        }

        .label-row {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 10px;
            gap: 12px;
        }

        label {
            font-weight: 600;
            font-size: 0.95rem;
        }

        .value-tag {
            background: #eff6ff;
            color: var(--brand-blue);
            padding: 4px 10px;
            border-radius: 0;
            font-weight: 700;
            font-size: 0.85rem;
            min-width: 88px;
            text-align: center;
            white-space: nowrap;
        }

        .value-input-wrapper {
            position: relative;
            display: inline-flex;
            align-items: center;
            min-width: 88px;
            max-width: 150px;
            background: #eff6ff;
            color: var(--brand-blue);
            border: 1px solid transparent;
            box-sizing: border-box;
        }

        .value-input-wrapper.value-input-wide {
            min-width: 112px;
        }

        .value-input-wrapper.value-input-years {
            min-width: 128px;
        }

        .value-input-wrapper.value-input-currency {
            min-width: 138px;
        }

        .value-input-wrapper input {
            width: 100%;
            min-width: 0;
            padding: 4px 36px 4px 10px;
            border: 0;
            border-radius: 0;
            background: transparent;
            color: inherit;
            font: inherit;
            font-weight: 700;
            font-size: 0.85rem;
            line-height: 1.35;
            text-align: right;
            box-sizing: border-box;
        }

        .value-input-wrapper.value-input-wide input {
            padding-right: 34px;
        }

        .value-input-wrapper.value-input-years input {
            padding-right: 58px;
        }

        .value-input-wrapper.value-input-currency input {
            padding-right: 58px;
        }

        .value-input-wrapper span {
            position: absolute;
            top: 50%;
            right: 10px;
            transform: translateY(-50%);
            color: inherit;
            font-weight: 700;
            font-size: 0.85rem;
            line-height: 1;
            pointer-events: none;
        }

        .value-input-wrapper:focus-within {
            border-color: var(--brand-blue);
            background: #dbeafe;
        }

        .value-input-wrapper.is-out-of-slider {
            border-color: #d97706;
            background: #fff7ed;
            color: #9a3412;
        }

        .value-input-wrapper.is-disabled {
            opacity: 0.75;
            cursor: not-allowed;
        }

        .value-input-wrapper input:disabled {
            cursor: not-allowed;
            opacity: 0.75;
        }

        input[type="range"] {
            --slider-accent: var(--brand-blue);
            --range-progress: 0%;
            width: 100%;
            height: 6px;
            background: linear-gradient(
                to right,
                var(--slider-accent) 0%,
                var(--slider-accent) var(--range-progress),
                #e5e7eb var(--range-progress),
                #e5e7eb 100%
            );
            border-radius: 0;
            outline: none;
            -webkit-appearance: none;
            cursor: pointer;
        }

        input[type="range"]:focus-visible {
            outline: 3px solid rgba(0, 84, 159, 0.28);
            outline-offset: 7px;
        }

        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 24px;
            height: 24px;
            background: var(--slider-accent);
            border: 3px solid white;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
            border-radius: 0;
            transition: transform 0.1s;
        }

        input[type="range"]::-webkit-slider-thumb:hover {
            transform: scale(1.08);
        }

        input[type="number"],
        .formatted-currency-input {
            width: 100%;
            padding: 11px 78px 11px 12px;
            border: 2px solid #e5e7eb;
            border-radius: 0;
            font-size: 0.96rem;
            font-weight: 600;
            color: var(--text-main);
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
            -moz-appearance: textfield;
            appearance: textfield;
        }

        input[type="number"]::-webkit-outer-spin-button,
        input[type="number"]::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        input[type="number"]:focus,
        .formatted-currency-input:focus {
            outline: none;
            border-color: var(--brand-blue);
        }

        .range-diesel {
            --slider-accent: var(--diesel-strong);
        }

        .range-bev {
            --slider-accent: var(--ev-strong);
        }

        select {
            width: 100%;
            padding: 11px 12px;
            border: 2px solid #e5e7eb;
            border-radius: 0;
            font-size: 0.96rem;
            font-weight: 600;
            color: var(--text-main);
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
            background: #ffffff;
        }

        select:focus {
            outline: none;
            border-color: var(--brand-blue);
        }

        input[type="number"][disabled],
        .formatted-currency-input[disabled],
        input[type="range"][disabled],
        select[disabled] {
            opacity: 0.65;
            cursor: not-allowed;
        }

        .currency-input-wrapper {
            position: relative;
        }

        .currency-input-wrapper span {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-weight: 600;
            font-size: 0.85rem;
            pointer-events: none;
        }

        .field-label-row {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
            flex-wrap: wrap;
        }

        .info-tooltip {
            --tooltip-anchor: 50%;
            --tooltip-shift: -50%;
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 18px;
            height: 18px;
            border: 1px solid #94a3b8;
            border-radius: 999px;
            background: #ffffff;
            color: var(--brand-blue);
            font-size: 0.72rem;
            font-weight: 800;
            line-height: 1;
            cursor: help;
            outline: none;
        }

        .info-tooltip:focus-visible {
            border-color: var(--brand-blue);
            box-shadow: 0 0 0 3px rgba(0, 84, 159, 0.15);
        }

        .info-tooltip-text {
            position: absolute;
            left: var(--tooltip-anchor);
            bottom: calc(100% + 10px);
            transform: translateX(var(--tooltip-shift));
            box-sizing: border-box;
            width: min(360px, calc(100vw - 32px));
            max-width: calc(100vw - 32px);
            background: #0f172a;
            color: #ffffff;
            padding: 10px 12px;
            font-size: 0.78rem;
            font-weight: 500;
            line-height: 1.45;
            box-shadow: 0 12px 28px rgba(15, 23, 42, 0.28);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.15s ease, visibility 0.15s ease;
            z-index: 20;
            overflow-wrap: break-word;
        }

        .info-tooltip-text::after {
            content: "";
            position: absolute;
            left: var(--tooltip-anchor);
            top: 100%;
            transform: translateX(-50%);
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-top: 6px solid #0f172a;
        }

        .grid-2 > .input-group:nth-child(1) .info-tooltip {
            --tooltip-anchor: 38%;
            --tooltip-shift: -38%;
        }

        .grid-2 > .input-group:nth-child(2) .info-tooltip {
            --tooltip-anchor: 62%;
            --tooltip-shift: -62%;
        }

        .info-tooltip:hover .info-tooltip-text,
        .info-tooltip:focus .info-tooltip-text,
        .info-tooltip:focus-within .info-tooltip-text {
            opacity: 1;
            visibility: visible;
        }

        .info-tooltip-text strong {
            display: block;
            margin-bottom: 6px;
        }

        .info-tooltip-text ul {
            margin: 0;
            padding-left: 16px;
        }

        .info-tooltip-text li + li {
            margin-top: 4px;
        }

        .field-details {
            margin-top: 8px;
            border-top: 1px solid #e2e8f0;
            color: var(--text-muted);
            font-size: 0.79rem;
        }

        .field-details > summary {
            padding: 8px 0 0;
            color: var(--brand-blue);
            font-weight: 700;
            cursor: pointer;
        }

        .field-details-content {
            padding-top: 7px;
            line-height: 1.45;
        }

        .field-details-content p,
        .field-details-content ul {
            margin: 0 0 7px;
        }

        .field-details-content ul {
            padding-left: 18px;
        }

        .preset-box {
            background: #f8fafc;
            border: 1px solid #e5e7eb;
            border-radius: 0;
            padding: 12px;
            margin: 0 0 18px 0;
        }

        .preset-title {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--text-muted);
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .preset-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
            gap: 10px;
        }

        .preset-row--secondary {
            margin-top: 10px;
        }

        .preset-btn {
            border: 1px solid #cbd5e1;
            border-radius: 0;
            background: #ffffff;
            color: #334155;
            padding: 10px 9px;
            font-size: 0.8rem;
            font-weight: 700;
            line-height: 1.25;
            cursor: pointer;
            text-align: left;
            font-family: 'Roboto', sans-serif;
            min-height: 58px;
        }

        .preset-btn small {
            display: block;
            margin-top: 2px;
            color: inherit;
            font-size: 0.72rem;
            font-weight: 500;
        }

        .preset-btn:hover {
            background: #f1f5f9;
        }

        .preset-btn.active {
            border-color: var(--brand-blue);
            background: #eff6ff;
            color: var(--brand-blue);
        }

        .preset-more {
            margin-top: 10px;
        }

        .preset-more summary {
            color: var(--brand-blue);
            cursor: pointer;
            font-size: 0.82rem;
            font-weight: 700;
            list-style-position: inside;
        }

        .preset-custom-panel {
            margin-top: 10px;
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            align-items: stretch;
            border: 1px solid var(--brand-blue);
            background: #eff6ff;
        }

        .preset-custom-panel[hidden] {
            display: none;
        }

        .preset-custom {
            display: flex;
            align-items: center;
            border: 0;
            background: transparent;
            color: var(--brand-blue);
            cursor: default;
            margin: 0;
            min-height: 44px;
            padding: 8px 10px;
            box-sizing: border-box;
            line-height: 1.2;
        }

        .preset-custom:hover,
        .preset-custom.active {
            border-color: transparent;
            background: transparent;
            color: var(--brand-blue);
        }

        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .grid-2.align-input-baseline > .input-group {
            display: grid;
            grid-template-rows: minmax(2.85em, auto) auto auto;
            align-content: start;
        }

        .grid-2.align-input-baseline > .input-group > label,
        .grid-2.align-input-baseline > .input-group > .field-label-row {
            align-self: end;
            margin-bottom: 8px !important;
        }

        .grid-2.align-input-baseline > .input-group > .currency-input-wrapper {
            grid-row: 2;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 14px;
        }

        @media (max-width: 720px) {
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }

            .grid-2.align-input-baseline > .input-group {
                display: block;
            }

            .preset-row {
                grid-template-columns: 1fr;
            }

            .kpi-toggle {
                grid-template-columns: 1fr;
            }

            .info-tooltip {
                --tooltip-anchor: 50%;
                --tooltip-shift: -50%;
            }
        }

        .mode-box {
            background: #f8fafc;
            border: 1px solid #e5e7eb;
            border-radius: 0;
            padding: 14px 14px 12px 14px;
            margin: 10px 0 20px 0;
        }

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

        .mode-row label {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
        }

        .mode-row input[type="checkbox"] {
            width: 18px;
            height: 18px;
            accent-color: var(--brand-blue);
            cursor: pointer;
        }

        .mode-hint {
            font-size: 0.82rem;
            color: var(--text-muted);
            margin-top: 10px;
        }

        .expert-panel {
            margin-top: 18px;
            border-top: 1px dashed #d1d5db;
            padding-top: 16px;
            display: flex;
            flex-direction: column;
        }

        .expert-title {
            margin: 0 0 12px 0;
            font-size: 0.92rem;
            font-weight: 700;
            color: var(--brand-blue);
            order: -2;
        }

        .plausibility-summary,
        .expert-plausibility-summary,
        .expert-plausibility-note {
            margin: 0 0 12px 0;
            padding: 8px 10px;
            border-left: 3px solid #d97706;
            background: #fff7ed;
            color: #9a3412;
            font-size: 0.78rem;
            font-weight: 650;
            line-height: 1.4;
        }

        .expert-plausibility-summary {
            order: -1;
        }

        .plausibility-summary {
            margin-top: -8px;
            margin-bottom: 18px;
        }

        .results-panel .calculation-error {
            margin: 12px 0 18px;
        }

        .expert-plausibility-note {
            margin-top: 7px;
            margin-bottom: 0;
        }

        .financing-box {
            border: 1px solid #dbe5ef;
            background: #f3f8fc;
            padding: 12px;
            margin: 0 0 18px 0;
        }

        .financing-title {
            margin: 0;
            font-size: 0.86rem;
            font-weight: 700;
            color: var(--brand-blue);
        }

        .financing-title-row {
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
            margin: 0 0 10px 0;
        }

        .financing-title-row .info-tooltip {
            flex: 0 0 auto;
        }

        .financing-title-row .info-tooltip-text {
            left: auto;
            right: 0;
            transform: none;
        }

        .financing-title-row .info-tooltip-text::after {
            left: auto;
            right: 3px;
            transform: none;
        }

        .tooltip-paragraph {
            display: block;
        }

        .tooltip-paragraph + .tooltip-paragraph {
            margin-top: 8px;
        }

        .financing-card {
            border: 1px solid #dbe5ef;
            background: #ffffff;
            padding: 10px;
        }

        .vehicle-field label,
        .vehicle-field .field-label-row > label,
        .vehicle-field .mode-row label,
        .vehicle-card--diesel .financing-card-label,
        .vehicle-card--bev .financing-card-label {
            font-weight: 700;
        }

        .vehicle-field label,
        .vehicle-field .field-label-row > label,
        .vehicle-field .mode-row label,
        .vehicle-card--diesel .financing-card-label,
        .vehicle-card--bev .financing-card-label {
            color: var(--text-main);
        }

        .vehicle-field--diesel input[type="number"],
        .vehicle-field--diesel .formatted-currency-input {
            border-color: var(--diesel-border);
            background: #ffffff;
        }

        .vehicle-field--bev input[type="number"],
        .vehicle-field--bev .formatted-currency-input {
            border-color: var(--ev-border);
            background: #ffffff;
        }

        .vehicle-field--diesel input[type="range"] {
            --slider-accent: var(--diesel-strong);
        }

        .vehicle-field--bev input[type="range"] {
            --slider-accent: var(--ev-strong);
        }

        .vehicle-field--diesel input[type="number"]:focus,
        .vehicle-field--diesel .formatted-currency-input:focus {
            border-color: var(--diesel-strong);
            box-shadow: 0 0 0 3px rgba(201, 133, 133, 0.10);
        }

        .vehicle-field--bev input[type="number"]:focus,
        .vehicle-field--bev .formatted-currency-input:focus {
            border-color: var(--ev-strong);
            box-shadow: 0 0 0 3px rgba(125, 156, 240, 0.10);
        }

        .vehicle-field .currency-input-wrapper span {
            color: var(--text-muted);
        }

        .vehicle-field--diesel .value-tag {
            background: #ffffff;
            border: 1px solid #dbe5ef;
            color: var(--text-main);
        }

        .vehicle-field--bev .value-tag {
            background: #ffffff;
            border: 1px solid #dbe5ef;
            color: var(--text-main);
        }

        .vehicle-card--diesel {
            border-color: var(--diesel-border);
            background: #ffffff;
        }

        .vehicle-card--bev {
            border-color: var(--ev-border);
            background: #ffffff;
        }

        .financing-card .input-group {
            margin-bottom: 12px;
        }

        .financing-card .input-group:last-child {
            margin-bottom: 0;
        }

        .residual-label-row {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 18px;
            align-items: end;
            gap: 8px;
            min-height: 2.7em;
            margin-bottom: 8px;
        }

        .residual-label-row > label {
            min-width: 0;
            line-height: 1.35;
        }

        .residual-label-row .info-tooltip,
        .residual-label-icon-spacer {
            width: 18px;
            height: 18px;
        }

        .financing-note {
            margin: 2px 0 10px 0;
            font-size: 0.77rem;
            color: var(--text-muted);
        }

        .residual-value-hint {
            margin: 6px 0 0 0;
            color: var(--text-muted);
            font-size: 0.78rem;
            font-weight: 650;
            line-height: 1.35;
        }

        .field-validation-note {
            margin: 6px 0 0 0;
            color: var(--danger);
            font-size: 0.78rem;
            font-weight: 700;
            line-height: 1.35;
        }

        .conditional-tax-field {
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px dashed #dbe5ef;
        }

        .caution-inline-note {
            padding: 8px 10px;
            border-left: 3px solid #d97706;
            background: #fff7ed;
            color: #9a3412;
            line-height: 1.4;
        }

        .input-group.is-disabled-by-financing {
            opacity: 0.58;
        }

        .input-group.is-disabled-by-financing label {
            color: #64748b;
        }

        input[aria-invalid="true"] {
            border-color: var(--danger);
        }

        .subsidy-calculator-grid {
            margin-top: 14px;
        }

        .subsidy-mode-toggle {
            margin: 12px 0 14px 0;
        }

        .caution-note {
            padding: 8px 10px;
            border-left: 3px solid #d97706;
            background: #fff7ed;
            color: #9a3412;
        }

        .range-boundary-note {
            padding: 8px 10px;
            border-left: 3px solid #f59e0b;
            background: #fff7ed;
            color: #7c2d12;
        }

        .financing-runtime-note {
            margin-top: 12px;
            padding: 10px 12px;
            border-left: 3px solid #d97706;
            background: #fff7ed;
            color: #9a3412;
            white-space: pre-line;
        }

        .kpi-box {
            border: 1px solid #dbe5ef;
            background: #ffffff;
            padding: 12px;
            margin: 0 0 18px 0;
            order: -1;
        }

        .kpi-title {
            margin: 0 0 10px 0;
            font-size: 0.86rem;
            font-weight: 700;
            color: var(--brand-blue);
        }

        .kpi-toggle {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 8px;
            margin-bottom: 10px;
        }

        .kpi-btn {
            border: 1px solid #cbd5e1;
            background: #ffffff;
            color: #334155;
            padding: 8px 10px;
            font-size: 0.8rem;
            font-weight: 700;
            cursor: pointer;
            text-align: center;
            font-family: 'Roboto', sans-serif;
        }

        .kpi-btn:hover {
            background: #f1f5f9;
        }

        .kpi-btn.active {
            border-color: var(--brand-blue);
            background: #eff6ff;
            color: var(--brand-blue);
        }

        .results-panel {
            background: #f4f7fa;
            padding: 34px;
            display: flex;
            flex-direction: column;
            align-self: stretch;
            width: 100%;
            box-sizing: border-box;
        }

        .results-chart-sticky {
            width: 100%;
        }

        .result-card {
            background: white;
            border-radius: 0;
            padding: 20px 22px 16px 22px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 16px;
            border: 1px solid #f0f0f0;
        }

        @media (min-width: 1120px) and (min-height: 700px) {
            .results-chart-sticky {
                position: sticky;
                top: 16px;
                z-index: 3;
                padding-top: 1px;
                background: #f4f7fa;
            }
        }

        .result-card h2 {
            margin: 0 0 12px 0;
            font-size: 0.86rem;
            color: var(--text-muted);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .result-kpi-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
            gap: 0;
            align-items: stretch;
            margin-bottom: 18px;
        }

        .result-main-kpi {
            min-width: 0;
            padding-right: clamp(18px, 3vw, 34px);
        }

        .saving-amount {
            display: block;
            font-size: 2.1rem;
            font-weight: 800;
            line-height: 1.1;
            color: var(--brand-blue);
        }

        .saving-amount.is-long-value {
            font-size: clamp(1.35rem, 3vw, 1.8rem);
            overflow-wrap: anywhere;
        }

        .saving-summary {
            display: flex;
            flex-wrap: wrap;
            align-items: baseline;
            gap: 8px 12px;
        }

        .saving-amount.positive {
            color: #059669;
        }

        .saving-amount.negative {
            color: #dc2626;
        }

        .saving-amount.neutral {
            color: #334155;
        }

        .saving-context {
            font-size: 1.12rem;
            font-weight: 700;
            line-height: 1.25;
            color: var(--text-main);
        }

        .saving-context.positive {
            color: var(--success);
        }

        .saving-context.negative {
            color: var(--danger);
        }

        .saving-context.neutral {
            color: #334155;
        }

        .monthly-cost-card {
            border-left: 3px solid #cbd5e1;
            padding-left: clamp(18px, 3vw, 34px);
            min-height: 0;
        }

        .monthly-cost-label {
            margin-bottom: 12px;
            color: var(--text-muted);
            font-size: 0.86rem;
            font-weight: 800;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .monthly-cost-comparison {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
        }

        .monthly-cost-vehicle {
            min-width: 0;
            padding: 12px 10px;
            border: 1px solid #d5dce6;
            text-align: center;
        }

        .monthly-cost-vehicle.is-cheaper {
            border-color: #bfe0cf;
            background: #f2fbf5;
        }

        .monthly-cost-vehicle-label,
        .monthly-cost-vehicle-value {
            display: block;
        }

        .monthly-cost-vehicle-label {
            color: var(--text-main);
            font-size: 0.9rem;
            font-weight: 700;
            line-height: 1.25;
        }

        .monthly-cost-vehicle.is-cheaper .monthly-cost-vehicle-label,
        .monthly-cost-vehicle.is-cheaper .monthly-cost-vehicle-value {
            color: var(--success);
        }

        .monthly-cost-vehicle-value {
            margin-top: 5px;
            color: var(--text-main);
            font-size: 1.5rem;
            font-weight: 800;
            line-height: 1.1;
        }

        .monthly-cost-vehicle-value.is-long-value {
            font-size: 1.05rem;
            overflow-wrap: anywhere;
        }

        .monthly-cost-explanation {
            margin: 8px 0 0;
            color: var(--text-muted);
            font-size: 0.72rem;
            line-height: 1.35;
            text-align: center;
        }

        .cost-drivers {
            display: grid;
            gap: 10px;
            position: relative;
            margin-top: 2px;
            padding: 14px 16px;
            background: transparent;
            border: 0;
            border-top: 1px solid #d7e0ec;
        }

        .cost-drivers-label {
            display: flex;
            align-items: center;
            gap: 6px;
            margin: 0;
            color: var(--text-muted);
            font-size: 0.82rem;
            font-weight: 800;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .cost-drivers-label .info-tooltip {
            flex: 0 0 auto;
            margin-left: 0;
            vertical-align: middle;
            letter-spacing: normal;
            text-transform: none;
        }

        .cost-drivers-label .info-tooltip-text {
            left: 0;
            right: auto;
            transform: none;
            width: min(260px, calc(100vw - 32px));
            letter-spacing: normal;
            text-transform: none;
            white-space: normal;
        }

        .cost-drivers-label .info-tooltip-text::after {
            left: 9px;
            right: auto;
            transform: none;
        }

        .cost-driver-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .cost-driver-chip {
            display: inline-flex;
            align-items: baseline;
            gap: 6px;
            min-width: 0;
            padding: 7px 10px;
            border: 1px solid #d6dee9;
            background: #ffffff;
            color: var(--text-main);
            font-size: 0.86rem;
            font-weight: 700;
            line-height: 1.25;
        }

        .cost-driver-chip.down {
            border-color: #bfe0cf;
        }

        .cost-driver-change {
            display: inline-flex;
            align-items: baseline;
            gap: 4px;
            font-size: 1rem;
            font-weight: 800;
            white-space: nowrap;
        }

        .cost-driver-change.down {
            color: var(--success);
        }

        .cost-driver-change.up {
            color: #475569;
        }

        .cost-driver-empty,
        .cost-driver-footnote {
            margin: 0;
            color: var(--text-muted);
            font-size: 0.8rem;
            line-height: 1.35;
        }

        @media (max-width: 720px) {
            .result-kpi-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .monthly-cost-card {
                border-left: 0;
                border-top: 3px solid #cbd5e1;
                padding-left: 0;
                padding-top: 12px;
            }

            .result-main-kpi {
                padding-right: 0;
            }

            .cost-drivers {
                padding: 12px 14px;
            }

            .cost-drivers-label {
                font-size: 0.76rem;
                letter-spacing: 0.025em;
            }

            .saving-context {
                font-size: 1rem;
            }

            .monthly-cost-vehicle {
                padding: 10px 7px;
            }

            .field-label-row {
                position: relative;
            }

            .field-label-row .info-tooltip,
            .financing-title-row .info-tooltip,
            .cost-drivers-label .info-tooltip {
                position: static;
            }

            .field-label-row .info-tooltip-text,
            .financing-title-row .info-tooltip-text,
            .cost-drivers-label .info-tooltip-text {
                left: 0;
                right: 0;
                bottom: calc(100% + 8px);
                width: auto;
                max-width: none;
                transform: none;
            }

            .field-label-row .info-tooltip-text::after,
            .financing-title-row .info-tooltip-text::after,
            .cost-drivers-label .info-tooltip-text::after {
                display: none;
            }
        }

        .chart-toggle {
            background: #e5e7eb;
            border-radius: 0;
            padding: 4px;
            display: flex;
            margin-bottom: 16px;
            width: 100%;
        }

        .toggle-btn {
            flex: 1;
            min-width: 0;
            border: none;
            background: transparent;
            padding: 9px 10px;
            border-radius: 0;
            font-weight: 700;
            color: var(--text-muted);
            cursor: pointer;
            transition: all 0.2s;
            font-family: 'Roboto', sans-serif;
            font-size: 0.87rem;
            line-height: 1.2;
        }

        .toggle-btn.active {
            background: white;
            color: var(--brand-blue);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .chart-wrapper {
            flex: 0 0 330px;
            position: relative;
            height: 330px;
            min-height: 330px;
        }

        canvas {
            width: 100% !important;
            height: 100% !important;
        }

        .legend {
            display: flex;
            flex-wrap: wrap;
            gap: 13px;
            justify-content: center;
            margin-top: 10px;
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .chart-note {
            margin: 8px 0 0 0;
            color: var(--text-muted);
            font-size: 0.78rem;
            text-align: center;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 0;
        }

        .delta-dot-positive {
            background: #13804d;
        }

        .delta-dot-negative {
            background: #c62828;
        }

        .delta-dot-total {
            background: #00549f;
        }

        .legend-line-swatch {
            display: inline-block;
            width: 22px;
            height: 0;
            border-top: 3px solid currentColor;
            flex: 0 0 auto;
        }

        .legend-line-swatch--diesel {
            color: var(--diesel-strong);
            border-top-style: dashed;
        }

        .legend-line-swatch--bev {
            color: var(--ev-strong);
        }

        .legend-line-swatch--dashed {
            border-top-style: dashed;
            border-top-width: 2px;
        }

        .cost-equality-marker {
            width: 9px;
            height: 9px;
            border: 2px solid #003b6f;
            background: #ffed00;
            border-radius: 50%;
            flex: 0 0 auto;
        }

        @media (max-width: 560px) {
            .chart-toggle {
                display: grid;
                grid-template-columns: 1fr;
                gap: 4px;
            }

            .chart-wrapper[data-active-chart="line"] {
                flex-basis: 430px;
                height: 430px;
                min-height: 430px;
            }
        }

        @media (max-width: 420px) {
            .monthly-cost-comparison {
                grid-template-columns: 1fr;
            }
        }

        [hidden] {
            display: none !important;
        }

        .financing-card-label {
            font-size: 0.88rem;
            font-weight: 700;
            color: var(--text-main);
            margin: 0 0 10px 0;
            padding-bottom: 8px;
            border-bottom: 2px solid #dbe5ef;
        }

        .vehicle-card--diesel .financing-card-label {
            border-bottom-color: var(--diesel-strong);
        }

        .vehicle-card--bev .financing-card-label {
            border-bottom-color: var(--ev-strong);
        }

        .vehicle-card--diesel .kpi-btn.active {
            border-color: #334155;
            background: #f8fafc;
            color: var(--text-main);
        }

        .vehicle-card--bev .kpi-btn.active {
            border-color: #334155;
            background: #f8fafc;
            color: var(--text-main);
        }

        .financing-toggle {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 6px;
            margin-bottom: 14px;
        }

        .export-bar {
            margin-bottom: 14px;
        }

        .export-bar-buttons {
            display: flex;
            justify-content: flex-end;
            gap: 8px;
        }

        .export-btn {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            border: 1px solid #cbd5e1;
            border-bottom: 2px solid #cbd5e1;
            background: #ffffff;
            color: #334155;
            padding: 8px 12px;
            font-size: 0.82rem;
            font-weight: 700;
            cursor: pointer;
            font-family: 'Roboto', sans-serif;
            transition: border-color 0.15s, background 0.15s;
        }

        .export-btn:hover {
            background: #f8fafc;
            border-color: #94a3b8;
            border-bottom-color: var(--brand-blue);
        }

        /* ── Print view ── */
        #print-view {
            display: none;
        }

        .pv-page {
            box-sizing: border-box;
        }

        .pv-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 18px;
            border-bottom: 3px solid var(--brand-blue);
            padding-bottom: 10px;
            margin-bottom: 20px;
        }

        .pv-header-copy {
            min-width: 0;
        }

        .pv-header-logo {
            width: 96px;
            height: auto;
            object-fit: contain;
        }

        .pv-title {
            font-size: 1.3rem;
            font-weight: 900;
            color: var(--brand-blue);
            margin: 0 0 3px 0;
        }

        .pv-timestamp {
            font-size: 0.82rem;
            color: #64748b;
        }

        .pv-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 24px;
        }

        .pv-section-title {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--brand-blue);
            margin-bottom: 8px;
            padding-bottom: 4px;
            border-bottom: 1px solid #e2e8f0;
        }

        .pv-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.86rem;
        }

        .pv-table tr {
            border-bottom: 1px solid #f1f5f9;
        }

        .pv-table td {
            padding: 5px 4px;
            vertical-align: top;
        }

        .pv-key {
            color: #64748b;
            width: 55%;
        }

        .pv-val {
            font-weight: 700;
            color: #1e293b;
        }

        .pv-highlight {
            background: #eff6ff;
            font-size: 1rem;
        }

        .pv-highlight .pv-key {
            color: #1e40af;
            font-weight: 700;
        }

        .pv-highlight .pv-val {
            color: var(--brand-blue);
            font-size: 1.1rem;
        }

        .pv-charts {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 20px;
        }

        .pv-charts-single {
            grid-template-columns: 1fr;
        }

        .pv-grid-single {
            grid-template-columns: 1fr;
        }

        .pv-page-block {
            page-break-inside: avoid;
        }

        .pv-page-break {
            break-before: page;
            page-break-before: always;
        }

        .pv-chart-img {
            width: 100%;
            height: auto;
            box-sizing: border-box;
            border: 1px solid #e2e8f0;
        }

        .pv-chart-img-bar {
            max-height: 345px;
            object-fit: contain;
        }

        .pv-line-chart-block .pv-chart-img {
            display: block;
            max-height: 360px;
            object-fit: contain;
        }

        .pv-legend {
            display: flex;
            flex-wrap: wrap;
            gap: 7px 14px;
            margin-top: 8px;
            font-size: 0.68rem;
            color: #475569;
        }

        .pv-legend-item {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            white-space: nowrap;
        }

        .pv-legend-item[hidden] {
            display: none;
        }

        .pv-chart-note {
            margin: 7px 0 0 0;
            color: #64748b;
            font-size: 0.68rem;
            line-height: 1.35;
        }

        .pv-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            flex: 0 0 auto;
            box-sizing: border-box;
            border: 1px solid currentColor;
            -webkit-print-color-adjust: exact;
            print-color-adjust: exact;
        }

        .pv-line-key {
            width: 16px;
            height: 0;
            border-top: 2px solid currentColor;
            flex: 0 0 auto;
        }

        .pv-line-diesel {
            color: var(--diesel-strong);
            border-top-style: dashed;
        }

        .pv-line-bev {
            color: var(--ev-strong);
        }

        .pv-line-dashed {
            border-top-style: dashed;
        }

        .pv-marker-key {
            display: inline-block;
            width: 9px;
            height: 9px;
            border: 2px solid #003b6f;
            background: #ffed00;
            border-radius: 50%;
            flex: 0 0 auto;
        }

        .pv-footer {
            font-size: 0.72rem;
            color: #64748b;
            border-top: 1px solid #e2e8f0;
            padding-top: 8px;
            margin-top: 8px;
        }

        @media print {
            @page {
                size: A4 portrait;
                margin: 14mm 14mm 13mm;
            }

            html,
            body {
                background: #ffffff !important;
            }

            .wrapper {
                display: none !important;
            }
            #print-view {
                display: block !important;
                padding: 0;
                font-family: 'Roboto', Arial, sans-serif;
            }
            .pv-page {
                min-height: 0;
            }
            .pv-grid,
            .pv-charts,
            .pv-page-block {
                page-break-inside: avoid;
            }
        }

        .next-step-card {
            margin-top: 22px;
            padding: 24px 26px;
            border: 1px solid #d7e3ee;
            background: linear-gradient(135deg, #f7fbff 0%, #eef5fb 100%);
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 22px;
            align-items: center;
        }

        .next-step-copy {
            max-width: 760px;
        }

        .next-step-kicker {
            display: inline-block;
            margin-bottom: 10px;
            color: var(--brand-blue);
            font-size: 0.74rem;
            font-weight: 800;
            letter-spacing: 0.07em;
            text-transform: uppercase;
        }

        .next-step-card h2 {
            margin: 0 0 10px 0;
            font-size: 1.35rem;
            color: var(--text-main);
            line-height: 1.2;
        }

        .next-step-card p {
            margin: 0;
            color: var(--text-muted);
            font-size: 0.95rem;
            max-width: 62ch;
        }

        .next-step-brand {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 14px;
        }

        .next-step-logo {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #ffffff;
            border: 1px solid #d7e3ee;
            padding: 12px 16px;
        }

        .next-step-logo img {
            display: block;
            width: 180px;
            height: auto;
        }

        .next-step-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            gap: 10px;
        }

        .next-step-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 190px;
            padding: 11px 15px;
            border: 1px solid var(--brand-blue);
            color: var(--brand-blue);
            background: #ffffff;
            font-size: 0.84rem;
            font-weight: 800;
            text-decoration: none;
            transition: background 0.15s, color 0.15s, border-color 0.15s;
        }

        .next-step-link:hover {
            background: var(--brand-blue);
            color: #ffffff;
        }

        .next-step-link.primary {
            background: var(--brand-blue);
            color: #ffffff;
        }

        .next-step-link.primary:hover {
            background: #003b6f;
            border-color: #003b6f;
        }

        @media (max-width: 860px) {
            .next-step-card {
                grid-template-columns: 1fr;
            }

            .next-step-brand,
            .next-step-links {
                align-items: flex-start;
                justify-content: flex-start;
            }
        }

        footer {
            margin-top: 26px;
            text-align: center;
            font-size: 0.82rem;
            color: var(--text-muted);
        }

        /* ── Preset-Beispiele & eigene Szenarien ── */
        .preset-example {
            margin-top: 10px;
            font-size: 0.78rem;
            color: var(--text-muted);
            line-height: 1.4;
        }

        .user-scenario-section {
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px dashed #cbd5e1;
        }

        .user-scenario-title {
            margin-bottom: 8px;
        }

        .user-scenario-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 10px;
        }

        .user-scenario-chip {
            display: inline-flex;
            align-items: stretch;
            border: 1px solid #cbd5e1;
            background: #ffffff;
        }

        .user-scenario-chip.active {
            border-color: var(--brand-blue);
            background: #eff6ff;
        }

        .user-scenario-apply {
            border: none;
            background: transparent;
            color: #334155;
            font-family: 'Roboto', sans-serif;
            font-size: 0.78rem;
            font-weight: 700;
            padding: 7px 4px 7px 10px;
            cursor: pointer;
            max-width: 180px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .user-scenario-chip.active .user-scenario-apply {
            color: var(--brand-blue);
        }

        .user-scenario-delete {
            border: none;
            background: transparent;
            color: #94a3b8;
            font-family: 'Roboto', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            padding: 7px 9px 7px 6px;
            cursor: pointer;
            line-height: 1;
        }

        .user-scenario-delete:hover {
            color: var(--danger);
        }

        .user-scenario-hint,
        .user-scenario-feedback {
            margin: 0 0 8px 0;
            font-size: 0.75rem;
            color: var(--text-muted);
            line-height: 1.4;
        }

        .user-scenario-feedback {
            color: var(--brand-blue);
            font-weight: 600;
        }

        .user-scenario-save-btn {
            display: inline-block;
            border: 1px solid var(--brand-blue);
            background: #ffffff;
            color: var(--brand-blue);
            font-family: 'Roboto', sans-serif;
            font-size: 0.78rem;
            font-weight: 700;
            padding: 8px 12px;
            cursor: pointer;
            margin-bottom: 8px;
        }

        .preset-custom-panel .user-scenario-save-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            align-self: stretch;
            border: 0;
            border-left: 1px solid var(--brand-blue);
            margin: 0;
            min-height: 44px;
            padding: 8px 12px;
            box-sizing: border-box;
            white-space: nowrap;
        }

        .user-scenario-save-btn:hover {
            background: #eff6ff;
        }

        .user-scenario-save-btn:disabled {
            opacity: 0.55;
            cursor: not-allowed;
        }

        .user-scenario-form {
            grid-column: 1 / -1;
            border: 1px solid #dbe5ef;
            background: #ffffff;
            padding: 10px;
            margin-bottom: 8px;
        }

        .preset-custom-panel .user-scenario-form {
            border-width: 1px 0 0 0;
            margin: 0;
        }

        .user-scenario-label {
            display: block;
            font-size: 0.78rem;
            margin-bottom: 6px;
        }

        .user-scenario-form input[type="text"] {
            width: 100%;
            box-sizing: border-box;
            padding: 9px 10px;
            border: 2px solid #e5e7eb;
            font-family: 'Roboto', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 8px;
        }

        .user-scenario-form input[type="text"]:focus {
            outline: none;
            border-color: var(--brand-blue);
        }

        .user-scenario-form-buttons {
            display: flex;
            gap: 8px;
        }

        .preset-custom-panel .user-scenario-hint {
            grid-column: 1 / -1;
            border-top: 1px solid #dbe5ef;
            background: #ffffff;
            margin: 0;
            padding: 8px 10px;
        }

        @media (max-width: 560px) {
            .preset-custom-panel {
                grid-template-columns: 1fr;
            }

            .preset-custom-panel .user-scenario-save-btn {
                border-left: 0;
                border-top: 1px solid var(--brand-blue);
                text-align: left;
            }
        }

        /* ── Ladesituation ── */
        .charging-situation-label {
            font-weight: 700;
            font-size: 0.95rem;
        }

        .charging-toggle {
            grid-template-columns: repeat(3, minmax(0, 1fr));
            margin-bottom: 0;
        }

        .charging-toggle .kpi-btn:disabled {
            opacity: 0.55;
            cursor: not-allowed;
        }

        @media (max-width: 720px) {
            .charging-toggle {
                grid-template-columns: 1fr;
            }
        }

        /* ── Annahmen-Tabelle ── */
        .scenario-assumptions {
            margin-top: 14px;
            padding-top: 12px;
            border-top: 1px solid #d7e3ee;
        }

        .base-assumptions-content .assumptions-heading {
            margin: 0 0 6px 0;
            color: var(--brand-blue);
            font-weight: 800;
        }

        .assumptions-table {
            width: 100%;
            table-layout: fixed;
            border-collapse: collapse;
            font-size: 0.8rem;
        }

        .assumptions-table th,
        .assumptions-table td {
            text-align: left;
            padding: 5px 6px;
            border-bottom: 1px solid #e2e8f0;
            vertical-align: top;
            overflow-wrap: anywhere;
        }

        .assumptions-table thead th {
            color: var(--brand-blue);
            font-size: 0.72rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .assumptions-table tbody th {
            font-weight: 600;
            color: var(--text-muted);
            width: 40%;
        }

        .assumptions-table tbody td {
            font-weight: 600;
            color: var(--text-main);
        }

        .assumptions-table tbody tr.assumptions-note-row td {
            font-weight: 500;
            color: var(--text-muted);
        }

        .assumption-sources {
            margin-top: 12px;
            border-top: 1px solid #d7e3ee;
            padding-top: 10px;
        }

        .assumption-sources summary {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            cursor: pointer;
            color: var(--brand-blue);
            font-weight: 800;
            font-size: 0.9rem;
            list-style: none;
            padding: 8px 0;
        }

        .assumption-sources summary::-webkit-details-marker {
            display: none;
        }

        .assumption-sources summary::after {
            content: "+";
            color: var(--brand-blue);
            font-size: 1rem;
            font-weight: 800;
            line-height: 1;
            flex: 0 0 auto;
        }

        .assumption-sources[open] summary::after {
            content: "-";
        }

        .sources-table {
            width: 100%;
            margin-top: 8px;
            border-collapse: collapse;
            font-size: 0.78rem;
        }

        .sources-table th,
        .sources-table td {
            text-align: left;
            padding: 5px 6px;
            border-bottom: 1px solid #e2e8f0;
            vertical-align: top;
        }

        .sources-table thead th {
            color: var(--brand-blue);
            font-size: 0.7rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .sources-table tbody th {
            width: 38%;
            color: var(--text-muted);
            font-weight: 700;
        }

        .sources-table tbody td {
            color: var(--text-main);
            font-weight: 500;
        }
