/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #f8f9fb;
    --color-surface: #ffffff;
    --color-border: #e2e6ed;
    --color-border-light: #f0f2f5;
    --color-text: #1a1d23;
    --color-text-secondary: #5f6b7a;
    --color-text-muted: #8b95a5;
    --color-primary: #2563eb;
    --color-primary-light: #eff6ff;
    --color-primary-dark: #1d4ed8;
    --color-accent: #0891b2;
    --color-success: #059669;
    --color-warning: #d97706;
    --color-danger: #dc2626;
    --color-merged: #7c3aed;
    --color-merged-bg: #f5f3ff;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 2px 4px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 4px 8px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.08);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    font-size: 15px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* === Top Navigation === */
.top-nav {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-icon {
    width: 22px;
    height: 22px;
    color: var(--color-primary);
}

.nav-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

.nav-version {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-primary);
    background: var(--color-primary-light);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 0.25rem;
}

.nav-links {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.selector-refresh {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    flex-shrink: 0;
}

.refresh-btn {
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-primary);
    background: var(--color-primary-light);
    border: 1px solid rgba(37,99,235,0.2);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.refresh-btn:hover:not(:disabled) {
    background: var(--color-primary);
    color: #fff;
}

.refresh-btn:disabled {
    opacity: 0.7;
    cursor: wait;
}

.refresh-status {
    font-size: 0.68rem;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.refresh-status.success {
    color: var(--color-success);
}

.refresh-status.error {
    color: var(--color-danger);
}

.refresh-spinner {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid rgba(37,99,235,0.3);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.nav-link {
    background: none;
    border: none;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    color: var(--color-text-secondary);
    font-size: 0.87rem;
    font-weight: 500;
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-sm);
    transition: all 0.15s ease;
}

.nav-link:hover {
    background: var(--color-bg);
    color: var(--color-text);
}

.nav-link.active {
    background: var(--color-primary-light);
    color: var(--color-primary);
}

/* === County Selector Bar === */
.county-selector-bar {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 56px;
    z-index: 90;
}

.selector-top-row {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
}

.selector-collapsible {
    overflow: hidden;
    max-height: 300px;
    transition: max-height 0.25s ease;
}

.county-selector-bar.collapsed .selector-collapsible {
    max-height: 0;
}

.selector-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0.3rem 2rem 0.65rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.selector-toggle-btn {
    margin-left: auto;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    min-width: 28px;
    padding: 5px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    background: transparent;
    color: var(--color-text-muted);
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s, transform 0.22s;
    line-height: 0;
}

.selector-toggle-btn:hover {
    background: var(--color-bg);
    color: var(--color-text);
}

.county-selector-bar.collapsed .selector-toggle-btn {
    transform: rotate(180deg);
}

.selector-collapsed-summary {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    font-style: italic;
    display: none;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.county-selector-bar.collapsed .selector-collapsed-summary {
    display: block;
}

.selector-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
}

.clear-chips-btn {
    background: none;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 500;
    color: #64748b;
    padding: 2px 8px;
    cursor: pointer;
    margin-left: 0.25rem;
    transition: background 0.15s, color 0.15s;
}
.clear-chips-btn:hover {
    background: #f1f5f9;
    color: #374151;
    border-color: #94a3b8;
}

.selector-icon {
    width: 16px;
    height: 16px;
}

.county-chips {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.county-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    border: 2px solid var(--color-border);
    background: var(--color-bg);
    color: var(--color-text-secondary);
    user-select: none;
}

.county-chip:hover {
    border-color: var(--color-text-muted);
}

.county-chip.active {
    border-color: var(--chip-color, var(--color-primary));
    background: var(--chip-bg, var(--color-primary-light));
    color: var(--chip-color, var(--color-primary));
}

.county-chip .chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.county-chip.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* === County Header === */
.county-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #2a5298 50%, #1e3a5f 100%);
    color: white;
    padding: 1.75rem 0;
}

.header-counties {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.header-county-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-left: 4px solid var(--county-color, rgba(255,255,255,0.5));
}

.header-county-name {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.header-county-meta {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-bottom: 0.75rem;
}

.header-county-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hc-stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.hc-stat-label {
    font-size: 0.65rem;
    opacity: 0.6;
    white-space: nowrap;
}

.header-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.county-selector {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.county-badge {
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    flex-shrink: 0;
}

.county-coat-of-arms {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(1.1);
}

.county-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.7;
    margin-bottom: 0.15rem;
}

.county-name {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    position: relative;
}

.county-dropdown {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    font-size: 1rem;
}

.county-meta {
    font-size: 0.82rem;
    opacity: 0.75;
    margin-top: 0.3rem;
}

.header-stats {
    display: flex;
    gap: 2rem;
}

.header-stat {
    text-align: right;
    padding: 0.75rem 1.25rem;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
}

.header-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.header-stat-label {
    font-size: 0.72rem;
    opacity: 0.7;
    margin-top: 0.1rem;
    white-space: nowrap;
}

/* === Merger Banner === */
.oslo-banner {
    background: #fef3c7;
    border-bottom: 1px solid #fbbf24;
}

.oslo-banner .banner-inner {
    color: #92400e;
}

.oslo-banner .banner-icon {
    color: #d97706;
}

.oslo-incomparable-badge {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 4px;
    margin-left: 4px;
    vertical-align: middle;
    letter-spacing: 0.02em;
}

.merger-banner {
    background: var(--color-merged-bg);
    border-bottom: 1px solid #e0d4fc;
}

.banner-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: #5b21b6;
    line-height: 1.5;
}

.banner-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--color-merged);
}

.merger-marker {
    color: var(--color-merged);
    font-weight: 700;
    font-size: 0.9em;
}

/* === Dashboard === */
.dashboard {
    max-width: 1360px;
    margin: 0 auto;
    padding: 2rem;
}

.dashboard-section {
    margin-bottom: 2.5rem;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-border);
}

.section-title {
    font-size: 1.15rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.01em;
}

.section-icon {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

.section-source {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.section-description {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    max-width: 80ch;
    margin-bottom: 1rem;
}

/* Structural table within card */
.structural-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
}

.structural-table th,
.structural-table td {
    padding: 0.5rem 0.75rem;
    text-align: right;
    border-bottom: 1px solid var(--color-border-light);
    white-space: nowrap;
}

.structural-table th:first-child,
.structural-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--color-text);
}

.structural-table thead th {
    font-weight: 600;
    color: var(--color-text);
    border-bottom: 2px solid var(--color-border);
    font-size: 0.78rem;
}

.structural-table tbody tr:hover {
    background: var(--color-primary-light);
}

.structural-table .highlight-cell {
    font-weight: 600;
    color: var(--color-primary);
}

/* === Card Grid === */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 1.25rem;
}

.card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.card-wide {
    grid-column: 1 / -1;
}

.card-header {
    padding: 1rem 1.25rem 0.5rem;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.card-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text);
}

.card-unit {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    font-weight: 500;
    white-space: nowrap;
}

.card-body {
    padding: 0.75rem 1.25rem 1.25rem;
    position: relative;
}

.chart-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: #94a3b8;
    pointer-events: none;
    letter-spacing: 0.01em;
}

.card-body-tall {
    min-height: 620px;
}

.card-body-tall canvas {
    min-height: 580px !important;
    height: 580px;
}

/* Ranking controls */
.ranking-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.ranking-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.ranking-select {
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.4rem 2rem 0.4rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    color: var(--color-text);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235f6b7a' d='M3 5l3 3 3-3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.6rem center;
    min-width: 250px;
}

.ranking-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.card-body canvas {
    width: 100% !important;
    max-height: 280px;
    min-height: 160px;
}

.card-wide .card-body canvas {
    max-height: 320px;
}

/* Stats card body */
.card-body-stats {
    padding: 0.5rem 1.25rem 1rem;
}

.stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--color-border-light);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--color-text-secondary);
}

.stat-value {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text);
    font-variant-numeric: tabular-nums;
}

/* === KOSTRA Table === */
.kostra-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    background: var(--color-surface);
}

.kostra-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
}

.kostra-table thead {
    background: #f8fafc;
}

.kostra-table th {
    padding: 0.85rem 1rem;
    text-align: right;
    font-weight: 600;
    color: var(--color-text-secondary);
    border-bottom: 2px solid var(--color-border);
    white-space: nowrap;
    font-size: 0.78rem;
}

.kostra-table th:first-child {
    text-align: left;
    padding-left: 1.25rem;
}

.kostra-table td {
    padding: 0.7rem 1rem;
    text-align: right;
    border-bottom: 1px solid var(--color-border-light);
    font-variant-numeric: tabular-nums;
}

.kostra-table td:first-child {
    text-align: left;
    padding-left: 1.25rem;
    font-weight: 500;
    color: var(--color-text);
}

.kostra-table tbody tr:hover {
    background: #f8fafc;
}

.kostra-table .merged-cell {
    background: var(--color-merged-bg);
    color: #5b21b6;
    font-weight: 500;
}

/* === Missing data badge (e.g. Nordland 2025 not yet reported) === */
.missing-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 7px;
    background: #fef3c7;
    color: #92400e;
    border-radius: 4px;
    vertical-align: middle;
    white-space: nowrap;
}

/* === Merger legend (shown under charts with merged-period data) === */
.merger-legend {
    font-size: 11px;
    color: #5f6b7a;
    margin: -0.25rem 1.25rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.merger-dash {
    font-weight: 700;
    letter-spacing: 3px;
    color: #94a3b8;
    font-size: 13px;
}

/* === Expand / swap card button === */
.card-header {
    align-items: center; /* override baseline so icon button aligns nicely */
}

.card-title {
    flex: 1;             /* title grows to fill space, pushing unit + btn right */
    min-width: 0;
}

.card-expand-btn {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    padding: 4px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    background: transparent;
    color: var(--color-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    margin-left: 0.5rem;
    line-height: 1;
}

.card-expand-btn:hover {
    background: var(--color-bg);
    color: var(--color-text);
    border-color: #94a3b8;
}

.card-expand-btn svg {
    width: 11px;
    height: 11px;
}

/* Wide card already expanded — hide button */
.card-wide .card-expand-btn {
    display: none;
}

/* === Datagrunnlag modal === */
.data-modal {
    border: none;
    border-radius: 12px;
    padding: 0;
    max-width: 760px;
    width: 92vw;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    font-family: 'Inter', -apple-system, sans-serif;
}
.data-modal::backdrop {
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(2px);
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e9ef;
}
.modal-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1d23;
}
.modal-close {
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: #5f6b7a;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    transition: background 0.15s;
}
.modal-close:hover { background: #f1f5f9; }
.modal-body {
    padding: 1.25rem 1.5rem;
    max-height: 72vh;
    overflow-y: auto;
}
.source-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.source-table th {
    text-align: left;
    padding: 0.5rem 0.75rem;
    background: #f1f5f9;
    font-weight: 600;
    color: #374151;
    border-bottom: 2px solid #e5e9ef;
}
.source-table td {
    padding: 0.5rem 0.75rem;
    border-top: 1px solid #f1f5f9;
    color: #374151;
    vertical-align: top;
}
.source-table tr:hover td { background: #fafbfc; }
/* === Om-modal === */
.modal-body p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #374151;
    margin-bottom: 0.85rem;
}

.om-tech {
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    background: #f8f9fb;
    border-radius: 8px;
    border-left: 3px solid #e2e8f0;
}

.om-tech h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #5f6b7a;
    margin-bottom: 0.6rem;
}

.om-tech ul {
    margin: 0;
    padding-left: 1.2rem;
    font-size: 0.88rem;
    line-height: 1.8;
    color: #374151;
}

.om-tech a, .om-email-link {
    color: #2563eb;
    text-decoration: none;
}

.om-tech a:hover, .om-email-link:hover {
    text-decoration: underline;
}

.modal-note {
    font-size: 12px;
    color: #5f6b7a;
    margin-top: 1rem;
    line-height: 1.5;
    padding: 0.75rem;
    background: #f8f9fb;
    border-radius: 8px;
    border-left: 3px solid #e2e8f0;
}

/* === Footer === */
.dashboard-footer {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    margin-top: 1rem;
}

.footer-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 2rem;
}

.footer-notes {
    margin-bottom: 1.5rem;
}

.footer-notes h4 {
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.footer-notes p {
    font-size: 0.78rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin-bottom: 0.6rem;
    max-width: 900px;
}

.footer-meta {
    padding-top: 1rem;
    border-top: 1px solid var(--color-border-light);
}

.footer-meta p {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* === Responsive === */
@media (max-width: 900px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-stats {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .header-stat {
        text-align: left;
        flex: 1;
        min-width: 140px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .kostra-table-wrapper {
        margin: 0 -1rem;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .dashboard {
        padding: 1.25rem 1rem;
    }
}

@media (max-width: 600px) {
    .county-name {
        font-size: 1.5rem;
    }

    .header-stat-value {
        font-size: 1.15rem;
    }

    html {
        font-size: 14px;
    }
}
