:root {
    --aur-bg: #0b0f14;
    --aur-panel: #f3f4f6;
    --aur-panel-2: #ffffff;
    --aur-panel-dark: #131820;
    --aur-border: rgba(255,255,255,0.12);
    --aur-text: #f4f4f5;
    --aur-muted: rgba(255,255,255,0.55);
    --aur-gold: #f5c96b;
    --aur-gold-strong: #ffc107;
    --aur-gold-soft: rgba(255, 193, 7, 0.18);
    --aur-sidebar-w: 280px;
    --aur-topbar-h: 78px;
    --aur-danger: #dc3545;
    --aur-success: #198754;
    --aur-primary: #0d6efd;
    --aur-warning: #ffc107;
    --aur-dark-btn: #212529;
    --aur-table-border: #d7d7d7;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: var(--aur-bg);
    color: var(--aur-text);
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

a {
    color: #2f6df6;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* =========================
   Topbar / Layout
   ========================= */

.topbar {
    height: var(--aur-topbar-h);
    background: #000;
    border-bottom: 1px solid var(--aur-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
}

.brand-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    border: 1px solid rgba(255, 193, 7, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--aur-gold-strong);
    background: radial-gradient(circle at center, rgba(255,193,7,0.18), rgba(255,255,255,0.03));
    font-weight: 900;
    letter-spacing: 0.04em;
    box-shadow:
        0 0 10px rgba(255, 193, 7, 0.24),
        0 0 28px rgba(255, 193, 7, 0.12);
}

.brand-text {
    color: var(--aur-gold);
    text-transform: uppercase;
    letter-spacing: 0.20em;
    font-size: 16px;
    font-weight: 800;
    text-shadow:
        0 0 6px rgba(255, 193, 7, 0.40),
        0 0 16px rgba(255, 193, 7, 0.18);
}

.brand-subtitle {
    color: rgba(255,255,255,0.44);
    font-size: 12px;
    margin-top: 4px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.topbar-link {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 12px;
    border-radius: 8px;
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    font-weight: 700;
}

.topbar-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
    text-decoration: none;
}

.role-badge {
    display: inline-block;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    background: rgba(220, 53, 69, 0.95);
    color: #fff;
}

.layout {
    display: block;
    min-height: 100vh;
    padding-top: var(--aur-topbar-h);
}

.sidebar {
    position: fixed;
    top: var(--aur-topbar-h);
    left: 0;
    bottom: 0;
    width: var(--aur-sidebar-w);
    height: calc(100vh - var(--aur-topbar-h));
    background: #0f1115;
    border-right: 1px solid rgba(255, 193, 7, 0.18);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1500;
}

.sidebar::-webkit-scrollbar {
    width: 8px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 193, 7, 0.25);
    border-radius: 8px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.04);
}

.sidebar-hero {
    padding: 20px 14px 22px;
    text-align: center;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 193, 7, 0.20) 0%,
        rgba(0, 0, 0, 0) 72%
    );
    border-bottom: 1px solid rgba(255, 193, 7, 0.18);
}

.sidebar-logo-text {
    color: var(--aur-gold-strong);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.20em;
    text-shadow:
        0 0 12px rgba(255, 193, 7, 0.55),
        0 0 30px rgba(255, 193, 7, 0.22);
}

.sidebar-logo-sub {
    margin-top: 6px;
    color: rgba(255,255,255,0.55);
    font-size: 12px;
    letter-spacing: 0.28em;
}

.sidebar-section {
    padding: 16px 18px 8px;
    font-size: 11px;
    color: rgba(255,255,255,0.48);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
}

.sidebar a.nav-link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 18px;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    border-left: 3px solid transparent;
    font-size: 14px;
}

.sidebar a.nav-link-item:hover {
    background: rgba(255,255,255,0.06);
    color: #fff;
    text-decoration: none;
}

.sidebar a.nav-link-item.active {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-left-color: var(--aur-gold-strong);
}

.sidebar a.nav-link-item.is-disabled {
    color: rgba(255,255,255,0.36);
    cursor: not-allowed;
}

.nav-pill {
    padding: 2px 7px;
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.12);
    color: var(--aur-gold);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.content {
    margin-left: var(--aur-sidebar-w);
    width: calc(100% - var(--aur-sidebar-w));
    min-height: calc(100vh - var(--aur-topbar-h));
    padding: 24px 30px 48px;
    background:
        linear-gradient(90deg, rgba(255,193,7,0.05) 0%, rgba(0,0,0,0) 14%),
        var(--aur-bg);
}

/* =========================
   Page / Panels
   ========================= */

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
}

.page-title {
    margin: 0;
    font-size: 36px;
    font-weight: 850;
    color: #fff;
    letter-spacing: -0.03em;
}

.page-subtitle {
    margin-top: 6px;
    color: rgba(255,255,255,0.42);
    font-size: 14px;
}

.page-meta {
    color: rgba(255,255,255,0.45);
    font-size: 13px;
    margin-top: 10px;
}

.aur-hero {
    background: linear-gradient(135deg, rgba(227, 186, 58, 0.16), rgba(10, 12, 16, 0.98));
    border: 1px solid rgba(227, 186, 58, 0.28);
    border-radius: 18px;
    padding: 22px 24px;
    margin-bottom: 18px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.aur-hero-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.aur-hero h2 {
    margin: 0;
    font-size: 34px;
    letter-spacing: -0.04em;
    color: #fff;
}

.aur-hero p {
    margin: 6px 0 0 0;
    color: #a1a1aa;
    font-size: 14px;
}

.aur-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.aur-btn,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid rgba(227, 186, 58, 0.35);
    background: rgba(255, 255, 255, 0.04);
    color: #f4f4f5;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
}

.aur-btn:hover,
.btn:hover {
    background: rgba(227, 186, 58, 0.12);
    color: #fff;
    text-decoration: none;
}

.aur-btn.primary,
.btn-primary {
    background: #e3ba3a;
    color: #111827;
    border-color: #e3ba3a;
}

.btn-outline,
.aur-btn.outline {
    background: rgba(255,255,255,0.05);
    color: #f4f4f5;
}

.aur-panel,
.section,
.panel {
    background: rgba(19, 22, 28, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    padding: 18px 20px;
    margin-bottom: 18px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24);
    color: #f4f4f5;
}

.aur-panel-header,
.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
    font-weight: 800;
}

.panel-body {
    padding: 0;
}

.aur-panel h2,
.aur-panel h3,
.section h2,
.panel h2,
.panel h3 {
    margin: 0;
    color: #fff;
}

.aur-panel-subtitle,
.panel-subtitle {
    color: #a1a1aa;
    font-size: 13px;
    margin-top: 4px;
}

.table-scroll,
.aur-table-wrap {
    overflow-x: auto;
    max-height: 540px;
    overflow-y: auto;
    padding-right: 4px;
}

/* =========================
   Cards / Stats
   ========================= */

.cards,
.aur-stats-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(130px, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.card,
.aur-stat-card,
.stat-card {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    padding: 15px;
    min-height: 84px;
    color: #f4f4f5;
}

.card-label,
.aur-stat-label,
.stat-label {
    color: #a1a1aa;
    font-size: 12px;
    margin-bottom: 6px;
}

.card-value,
.aur-stat-value,
.stat-value {
    color: #fff;
    font-size: 28px;
    font-weight: 850;
    line-height: 1;
    margin-bottom: 8px;
}

.card-note,
.stat-meta {
    color: #a1a1aa;
    font-size: 12px;
}

/* =========================
   Tables
   ========================= */

table,
.aur-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

th,
.aur-table th {
    color: #e3ba3a !important;
    text-align: left;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 11px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    white-space: nowrap;
}

td,
.aur-table td {
    color: #f4f4f5 !important;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    vertical-align: top;
}

tr:hover td,
.aur-table tr:hover td {
    background: rgba(227, 186, 58, 0.035);
}

.table-link {
    font-weight: 850;
    color: #7aa2ff;
}

.amount-cell {
    font-weight: 850;
    color: #fef3c7 !important;
}

.muted {
    color: #a1a1aa !important;
}

.code-cell,
pre,
.json-block {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

pre,
.json-block {
    margin: 0;
    padding: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 10px;
    color: #f4f4f5;
    white-space: pre-wrap;
    word-break: break-word;
    max-height: 320px;
    overflow: auto;
}

/* =========================
   Forms
   ========================= */

.filter-grid,
.aur-filter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    align-items: end;
}

label {
    display: block;
    font-size: 12px;
    margin-bottom: 6px;
    color: #a1a1aa;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

input[type="text"],
input[type="number"],
select {
    width: 100%;
    height: 40px;
    padding: 8px 12px;
    border: 1px solid #cfd3d7;
    border-radius: 8px;
    background: #fff;
    color: #111827;
    font-size: 14px;
}

.form-row-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* =========================
   Badges / Status
   ========================= */

.badge,
.status-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 850;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.badge-posted,
.badge-active,
.badge-success,
.status-online {
    color: #86efac;
    background: rgba(34, 197, 94, 0.10);
    border-color: rgba(34, 197, 94, 0.28);
}

.badge-failed,
.badge-danger,
.status-offline {
    color: #fb7185;
    background: rgba(244, 63, 94, 0.10);
    border-color: rgba(244, 63, 94, 0.30);
}

.badge-pending,
.badge-processing,
.badge-warning {
    color: #fef3c7;
    background: rgba(245, 201, 107, 0.12);
    border-color: rgba(245, 201, 107, 0.30);
}

.badge-test,
.badge-info,
.badge-primary,
.status-info {
    color: #7dd3fc;
    background: rgba(14, 165, 233, 0.10);
    border-color: rgba(14, 165, 233, 0.28);
}

.badge-secondary,
.badge-soft-gray {
    background: rgba(148, 163, 184, 0.18);
    color: #d1d5db;
}

/* =========================
   Details / Timeline
   ========================= */

.detail-grid-2,
.content-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.kv-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
}

.kv-label,
.kv-value {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.kv-label {
    color: #a1a1aa;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.kv-value {
    color: #fff;
    word-break: break-word;
}

.message-stack {
    margin-bottom: 16px;
}

.message-box {
    background: rgba(255, 193, 7, 0.12);
    color: #fef3c7;
    border: 1px solid rgba(255, 193, 7, 0.28);
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 1500px) {
    .cards,
    .aur-stats-grid {
        grid-template-columns: repeat(3, minmax(130px, 1fr));
    }

    .filter-grid,
    .aur-filter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

@media (max-width: 980px) {
    .topbar {
        position: sticky;
        height: auto;
        min-height: var(--aur-topbar-h);
        flex-wrap: wrap;
        gap: 12px;
        padding: 12px 16px;
    }

    .layout {
        padding-top: 0;
    }

    .sidebar {
        position: static;
        width: 100%;
        height: auto;
    }

    .content {
        margin-left: 0;
        width: 100%;
        padding: 16px;
    }

    .page-header,
    .aur-hero-row {
        display: block;
    }

    .cards,
    .aur-stats-grid,
    .filter-grid,
    .aur-filter-grid {
        grid-template-columns: 1fr;
    }

    .page-title,
    .aur-hero h2 {
        font-size: 28px;
    }

    .brand-subtitle {
        display: none;
    }

    .topbar-right {
        flex-wrap: wrap;
    }

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

    .kv-label {
        border-bottom: 0;
        padding-bottom: 2px;
    }

    .kv-value {
        padding-top: 2px;
    }
}


/* =========================
   Provider Payment Intents
   BLOK 2.2 final dashboard UI
   ========================= */

.page-header h1,
.page-header .page-title {
    margin: 0;
    font-size: 34px;
    line-height: 1.12;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.04em;
}

.page-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(255,255,255,0.05);
    color: #f4f4f5;
    border-color: rgba(227, 186, 58, 0.35);
}

.dashboard-grid {
    display: grid;
    gap: 18px;
    margin-bottom: 18px;
}

.dashboard-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dashboard-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-card {
    background:
        radial-gradient(circle at top left, rgba(255, 193, 7, 0.10), transparent 45%),
        rgba(19, 22, 28, 0.96);
    border: 1px solid rgba(255, 193, 7, 0.18);
    border-radius: 18px;
    padding: 18px 20px;
    min-height: 116px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24);
    color: #f4f4f5;
}

.metric-label {
    color: #a1a1aa;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    margin-bottom: 10px;
}

.metric-value {
    color: #f5c96b;
    font-size: 30px;
    line-height: 1.08;
    font-weight: 900;
    word-break: break-word;
    text-shadow:
        0 0 8px rgba(255, 193, 7, 0.22),
        0 0 20px rgba(255, 193, 7, 0.10);
}

.metric-value-small {
    font-size: 19px;
}

.metric-note {
    color: rgba(255,255,255,0.48);
    font-size: 12px;
    line-height: 1.35;
    margin-top: 10px;
}

.panel-header p {
    margin: 6px 0 0 0;
    color: #a1a1aa;
    font-size: 13px;
    font-weight: 500;
}

.filter-form {
    margin-top: 4px;
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    align-items: end;
}

.filter-row label {
    margin-bottom: 0;
}

.filter-row select,
.filter-row input[type="text"],
.filter-row input[type="number"] {
    margin-top: 6px;
}

.filter-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
}

.status-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    background: rgba(255,255,255,0.035);
}

.status-label {
    color: #f4f4f5;
    font-size: 14px;
}

.status-badge {
    min-width: 42px;
    text-align: center;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.12);
    color: #f5c96b;
    border: 1px solid rgba(255, 193, 7, 0.22);
    font-size: 12px;
    font-weight: 900;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
    overflow-y: auto;
    max-height: 640px;
    padding-right: 4px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.data-table th {
    color: #e3ba3a !important;
    text-align: left;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 11px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    white-space: nowrap;
}

.data-table td {
    color: #f4f4f5 !important;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    vertical-align: top;
}

.data-table tr:hover td {
    background: rgba(227, 186, 58, 0.035);
}

.data-table td a {
    font-weight: 800;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    color: #dbeafe;
    border: 1px solid rgba(96, 165, 250, 0.28);
    background: rgba(37, 99, 235, 0.16);
}

.status-ledger_posted,
.status-posted,
.status-active {
    color: #86efac;
    background: rgba(34, 197, 94, 0.10);
    border-color: rgba(34, 197, 94, 0.28);
}

.status-provider_confirmed,
.status-processing,
.status-pending,
.status-ready,
.status-sent_to_provider,
.status-provider_pending {
    color: #fef3c7;
    background: rgba(245, 201, 107, 0.12);
    border-color: rgba(245, 201, 107, 0.30);
}

.status-provider_failed,
.status-failed,
.status-cancelled,
.status-expired {
    color: #fb7185;
    background: rgba(244, 63, 94, 0.10);
    border-color: rgba(244, 63, 94, 0.30);
}

.status-manual_review {
    color: #ddd6fe;
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.30);
}

.status-created,
.status-draft {
    color: #7dd3fc;
    background: rgba(14, 165, 233, 0.10);
    border-color: rgba(14, 165, 233, 0.28);
}

.detail-list {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 0;
    margin: 0;
}

.detail-list dt,
.detail-list dd {
    margin: 0;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.detail-list dt {
    color: #a1a1aa;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-list dd {
    color: #fff;
    word-break: break-word;
    padding-left: 18px;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.timeline-step {
    position: relative;
    min-height: 92px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
}

.timeline-step.is-reached {
    border-color: rgba(255, 193, 7, 0.22);
    background:
        radial-gradient(circle at top left, rgba(255, 193, 7, 0.09), transparent 55%),
        rgba(255,255,255,0.035);
}

.timeline-step.is-current {
    border-color: rgba(255, 193, 7, 0.65);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.08);
}

.timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.24);
    margin-bottom: 10px;
}

.timeline-step.is-reached .timeline-dot {
    background: #ffc107;
    box-shadow: 0 0 16px rgba(255, 193, 7, 0.35);
}

.timeline-label {
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.timeline-meta {
    margin-top: 6px;
    color: #a1a1aa;
    font-size: 12px;
    line-height: 1.35;
    word-break: break-word;
}

.empty-row {
    color: #a1a1aa !important;
    text-align: center;
    padding: 18px !important;
}

.pagination {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination-current {
    color: #a1a1aa;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 1500px) {
    .dashboard-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .timeline {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .dashboard-grid-2,
    .dashboard-grid-3,
    .dashboard-grid-4,
    .filter-row,
    .timeline {
        grid-template-columns: 1fr;
    }

    .detail-list {
        grid-template-columns: 1fr;
    }

    .detail-list dd {
        padding-left: 0;
    }

    .metric-value {
        font-size: 26px;
    }
}
