:root {
    --navy: #0b1220;
    --navy-soft: #121a2b;
    --ink: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --paper: #f4f7fb;
    --card: #ffffff;
    --accent: #0f766e;
    --accent-2: #0ea5e9;
    --live: #10b981;
    --danger: #e11d48;
    --shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    --radius: 18px;
    --sidebar: 272px;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    min-height: 100%;
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
}

:focus-visible {
    outline: 3px solid rgba(14, 165, 233, 0.45);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    left: 12px;
    top: -48px;
    z-index: 100;
    background: #fff;
    color: var(--ink);
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 700;
}

.skip-link:focus {
    top: 12px;
}

.app-body { background: var(--paper); }

.app-shell {
    display: flex;
    min-height: 100vh;
}

.app-sidebar {
    width: var(--sidebar);
    background: linear-gradient(180deg, #0b1220 0%, #111827 100%);
    color: #e2e8f0;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 30;
    padding: 22px 16px;
}

.sidebar-brand {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 8px 10px 22px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: white;
    background: linear-gradient(135deg, #0f766e, #0284c7);
}

.brand-name { font-weight: 800; letter-spacing: -0.03em; color: #fff; }
.brand-sub { font-size: 12px; color: #94a3b8; }

.nav-label {
    margin: 18px 12px 8px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
}

.nav-item i { width: 18px; }
.nav-item:hover { background: rgba(255,255,255,0.06); color: #fff; }
.nav-item.active {
    background: rgba(14, 165, 233, 0.16);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(14, 165, 233, 0.25);
}

.sidebar-footer { margin-top: auto; padding-top: 16px; }
.sidebar-footer form { margin: 0; }
.nav-logout { color: #fda4af; }
button.nav-item {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font: inherit;
}

.app-main { flex: 1; min-width: 0; }

.app-topbar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px 8px;
}

.topbar-title h1 {
    margin: 0;
    font-size: 26px;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.topbar-title p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.topbar-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 14px;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.live-badge.is-sandbox {
    background: #fff7ed;
    color: #c2410c;
    border-color: #fed7aa;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--live);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.user-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 12px 6px 6px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: white;
    font-weight: 700;
}

.user-meta { display: flex; flex-direction: column; line-height: 1.15; }
.user-meta strong { font-size: 13px; }
.user-meta small { color: var(--muted); text-transform: capitalize; font-size: 11px; }

.app-content { padding: 12px 28px 36px; }

.page-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 18px;
}

.toolbar-custom {
    display: flex;
    align-items: center;
    gap: 8px;
}

.toolbar-custom[hidden] {
    display: none !important;
}

.toolbar-custom .form-control {
    min-height: 38px;
    width: auto;
}

.toolbar-currency {
    max-width: 170px;
    min-height: 38px;
}

.filter-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-pill {
    border: 1px solid var(--line);
    background: white;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 600;
    font-size: 13px;
    color: var(--muted);
}
.filter-pill.active {
    background: var(--navy);
    border-color: var(--navy);
    color: white;
}
.toolbar-note { color: var(--muted); font-size: 13px; }

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 18px;
}

.stat-grid.compact { grid-template-columns: repeat(5, 1fr); }

.stat-card {
    background: var(--card);
    border: 1px solid #edf2f7;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px;
    display: flex;
    gap: 14px;
    min-height: 118px;
}

.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: white;
    flex: 0 0 auto;
}
.stat-icon.teal { background: #0f766e; }
.stat-icon.blue { background: #0284c7; }
.stat-icon.indigo { background: #4f46e5; }
.stat-icon.slate { background: #334155; }
.stat-icon.cyan { background: #0891b2; }
.stat-icon.rose { background: #e11d48; }
.stat-icon.amber { background: #d97706; }
.stat-icon.orange { background: #ea580c; }

.stat-label { display: block; color: var(--muted); font-size: 13px; font-weight: 600; }
.stat-value { display: block; font-size: 26px; letter-spacing: -0.04em; margin: 4px 0; }
.stat-hint { color: #94a3b8; font-size: 12px; }

.stat-money-stack {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 18px;
    letter-spacing: -0.03em;
}

.stat-money-stack span {
    display: block;
    line-height: 1.25;
}

.stat-grid.compact .stat-card {
    flex-direction: column;
    min-height: 0;
}

.balance-panel { margin-bottom: 18px; }
#caseStatsPanel { margin-bottom: 18px; }

.balance-status {
    color: var(--muted);
    padding: 8px 0 4px;
}

.balance-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.balance-card {
    border: 1px solid #edf2f7;
    border-radius: 16px;
    padding: 16px;
    background: linear-gradient(180deg, #f8fafc, #fff);
}

.balance-card header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.balance-card h3 {
    margin: 0;
    font-size: 18px;
    letter-spacing: 0.08em;
}

.currency-badge {
    background: #ecfdf5;
    color: #047857;
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.balance-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
}

.balance-row:last-child { border-bottom: 0; }
.balance-row span { color: var(--muted); }

.panel-header .btn .spinner-border {
    margin-left: 8px;
    width: 1rem;
    height: 1rem;
}

.chart-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.panel {
    background: var(--card);
    border: 1px solid #edf2f7;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px;
}

.panel-wide { grid-column: 1 / -1; }

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.panel-header h2 {
    margin: 0;
    font-size: 18px;
    letter-spacing: -0.03em;
}

.panel-header p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.chart-empty { position: relative; min-height: 180px; }
.chart-empty canvas {
    width: 100% !important;
    height: 180px !important;
}
.panel-wide .chart-empty canvas {
    height: 220px !important;
}
.chart-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--muted);
    font-size: 14px;
    text-align: center;
    padding: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.85));
}
.chart-overlay.is-hidden { display: none; }

.filter-bar {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 10px;
    margin-bottom: 16px;
}

.filter-bar-transactions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: end;
}

.filter-field {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.filter-field span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}

.filter-submit .btn {
    width: 100%;
    min-height: 44px;
}

.filter-submit-spacer { visibility: hidden; }

.filter-bar-disputes {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.filter-bar-reports {
    grid-template-columns: repeat(5, minmax(0, 1fr)) auto;
}

.filter-help {
    color: var(--muted);
    font-size: 13px;
    margin: -8px 0 14px;
}

.table-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.pager {
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-table code {
    font-size: 12px;
}

.detail-block small {
    display: block;
    color: var(--muted);
    font-weight: 500;
    margin-top: 2px;
}

.app-table { margin: 0; }
.app-table thead th {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}
.app-table th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    font-weight: 700;
    border-bottom-width: 1px;
}

.tx-panel { min-width: 0; }

.tx-table-wrap {
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: auto;
    max-height: calc(100vh - 320px);
    background: #fff;
}

.tx-table-wrap.is-empty,
.tx-table-wrap.is-loading {
    border: 0;
    max-height: none;
    overflow: visible;
}

.tx-table-wrap.is-empty .tx-table,
.tx-table-wrap.is-loading .tx-table {
    display: none;
}

.tx-table {
    min-width: 1080px;
    margin: 0;
}

.tx-table thead th {
    background: #f8fafc;
    white-space: nowrap;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
}

.tx-table tbody td {
    padding: 14px;
    vertical-align: middle;
    border-bottom: 1px solid #f1f5f9;
}

.tx-table tbody tr:last-child td { border-bottom: 0; }
.tx-table tbody tr:hover { background: #f8fafc; }

.tx-id {
    font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
    font-size: 12px;
    word-break: break-all;
}

.tx-date { white-space: nowrap; color: #334155; }

.tx-type {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.type-chip {
    display: inline-flex;
    align-items: center;
    font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
    font-size: 12px;
    font-weight: 700;
    background: #f1f5f9;
    color: #0f172a;
    padding: 2px 8px;
    border-radius: 999px;
}

.type-chip-label {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.3;
}

.customer-cell strong {
    display: block;
    font-size: 14px;
}

.customer-cell small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    word-break: break-all;
}

.col-num {
    text-align: right;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.col-actions {
    width: 88px;
    text-align: right;
}

.empty-state {
    text-align: center;
    padding: 42px 16px;
    color: var(--muted);
}

.empty-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: #f1f5f9;
    color: #64748b;
    font-size: 24px;
}

.empty-state h3 { color: var(--ink); font-size: 18px; margin-bottom: 6px; }

.detail-grid, .settings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.detail-block h3, .settings-list + .settings-actions { margin-top: 0; }
.detail-block h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.detail-block dl, .settings-list { margin: 0; }
.detail-block dl > div, .settings-list > div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}
.detail-block dt, .settings-list dt { color: var(--muted); }
.detail-block dd, .settings-list dd { margin: 0; font-weight: 600; }

.status-badge {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 999px;
    background: #f1f5f9;
    font-size: 12px;
    font-weight: 700;
    text-transform: capitalize;
}

.status-success { background: #ecfdf5; color: #047857; }
.status-failed { background: #fff1f2; color: #be123c; }
.status-running { background: #eff6ff; color: #1d4ed8; }
.status-hold { background: #fffbeb; color: #b45309; }
.status-awaiting { background: #fff4e5; color: #9a3412; }
.status-review { background: #f1f5f9; color: #334155; }

.case-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--line);
}
.case-tab {
    border: 0;
    background: transparent;
    padding: 10px 14px;
    font-weight: 700;
    color: var(--muted);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}
.case-tab.active {
    color: var(--ink);
    border-bottom-color: #0f766e;
}
.case-id-link {
    color: #1d4ed8;
    font-weight: 700;
    text-decoration: none;
}
.case-id-link:hover { text-decoration: underline; }
.case-type { white-space: nowrap; }
.case-type .bi { color: #2563eb; margin-right: 6px; }
.cases-table .col-menu { width: 48px; text-align: right; }
.case-menu-btn {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.timeline-list { list-style: none; margin: 0; padding: 0; }
.timeline-list li {
    padding: 10px 0 10px 16px;
    border-left: 2px solid #e2e8f0;
    margin-left: 8px;
}
.timeline-list strong { display: block; }
.timeline-list small { color: var(--muted); }

.evidence-files {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.evidence-file {
    display: grid;
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #f8fafc;
    color: inherit;
    text-decoration: none;
    min-width: 0;
}

.evidence-file span {
    font-size: 12px;
    font-weight: 700;
    word-break: break-word;
}

.evidence-file small {
    color: var(--muted);
    font-size: 11px;
}

.evidence-file i {
    font-size: 28px;
    color: #be123c;
}

.evidence-image img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    background: #e2e8f0;
}

.evidence-image img.is-broken {
    display: none;
}

.evidence-file.is-name-only {
    color: var(--muted);
}
.status-released { background: #ecfeff; color: #0f766e; }

.detail-block-wide { grid-column: 1 / -1; }
.detail-notes {
    list-style: none;
    margin: 0;
    padding: 0;
}
.detail-notes li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}
.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 12px;
}
.action-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    display: grid;
    gap: 10px;
    background: #fff;
}
.action-card h4 { margin: 0; font-size: 16px; }
.action-card-danger { border-color: #fecdd3; background: #fff7f8; }
.action-warn { color: #be123c; font-size: 13px; margin: 0; }
.action-field { display: grid; gap: 4px; font-size: 13px; color: var(--muted); }
.action-card .btn { justify-self: start; }

.settings-actions { margin-top: 18px; display: grid; gap: 8px; }

.sidebar-toggle {
    display: none;
    border: 1px solid var(--line);
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 12px;
}

.toast-host {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 50;
    display: grid;
    gap: 8px;
}

.app-toast {
    background: var(--navy);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    min-width: 240px;
    box-shadow: var(--shadow);
}

.app-toast.toast-success { background: #047857; }
.app-toast.toast-error { background: #be123c; }

.connection-result {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
}

.connection-result.is-success {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.connection-result.is-error {
    background: #fff1f2;
    color: #be123c;
    border: 1px solid #fecdd3;
}

.settings-actions .btn .spinner-border {
    margin-left: 8px;
    width: 1rem;
    height: 1rem;
}

.auth-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(14,165,233,0.18), transparent 32%),
        linear-gradient(180deg, #0b1220, #111827);
    display: grid;
    place-items: center;
    padding: 32px;
}

.auth-shell {
    width: min(960px, 100%);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background: #0b1220;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.28);
}

.auth-aside {
    padding: 48px 40px;
    color: #e2e8f0;
    background: linear-gradient(180deg, rgba(15,118,110,0.25), transparent 50%);
}

.auth-brand { font-weight: 800; margin-bottom: 24px; }
.auth-aside h1 {
    font-size: 34px;
    letter-spacing: -0.05em;
    margin-bottom: 14px;
}

.auth-card {
    background: white;
    padding: 42px 36px;
}

.auth-card h2 { letter-spacing: -0.04em; font-weight: 800; }
.auth-copy { color: var(--muted); margin-bottom: 24px; }
.setup-link { margin-top: 18px; font-size: 14px; }
.setup-shell { grid-template-columns: 1fr; max-width: 560px; }
.auth-card-wide { border-radius: 28px; }

.error-shell {
    grid-template-columns: 1fr;
    max-width: 520px;
    background: transparent;
    box-shadow: none;
}

.error-code {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: #0f766e;
    margin-bottom: 8px;
}

.password-field {
    position: relative;
}

.password-field .form-control {
    padding-right: 72px;
}

.password-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
    padding: 6px 8px;
}

.btn-primary {
    background: #0f766e;
    border-color: #0f766e;
    font-weight: 700;
}
.btn-primary:hover { background: #115e59; border-color: #115e59; }

.form-control, .form-select {
    min-height: 44px;
    border-radius: 12px;
}

@media (max-width: 1200px) {
    .stat-grid, .stat-grid.compact, .chart-grid, .detail-grid, .settings-grid {
        grid-template-columns: 1fr 1fr;
    }
    .filter-bar-transactions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .app-sidebar {
        position: fixed;
        left: 0;
        transform: translateX(-105%);
        transition: transform 0.2s ease;
    }
    .app-sidebar.open { transform: translateX(0); }
    .sidebar-toggle { display: inline-grid; place-items: center; }
    .sidebar-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.45);
        z-index: 20;
    }
    .sidebar-backdrop.show { display: block; }
    .auth-shell { grid-template-columns: 1fr; }
    .filter-bar { grid-template-columns: 1fr; }
    .filter-bar-transactions {
        grid-template-columns: 1fr 1fr;
    }
    .filter-submit { grid-column: span 2; }

    .tx-table-wrap {
        border: 0;
        overflow: visible;
        max-height: none;
        background: transparent;
    }

    .tx-table {
        min-width: 0;
        display: block;
    }

    .tx-table thead { display: none; }

    .tx-table tbody {
        display: grid;
        gap: 12px;
    }

    .tx-table tbody tr {
        display: grid;
        gap: 0;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 6px 14px 14px;
        box-shadow: var(--shadow);
    }

    .tx-table tbody tr:hover { background: #fff; }

    .tx-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 12px;
        padding: 10px 0;
        border-bottom: 1px solid #f1f5f9;
        text-align: right;
    }

    .tx-table tbody td:last-child { border-bottom: 0; }

    .tx-table tbody td::before {
        content: attr(data-label);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--muted);
        text-align: left;
        flex: 0 0 38%;
        padding-top: 2px;
    }

    .tx-table .tx-type {
        align-items: flex-end;
    }

    .tx-table .col-num,
    .tx-table .col-actions {
        text-align: right;
        width: auto;
    }

    .tx-table .col-actions .btn {
        width: 100%;
        min-width: 120px;
    }

    .table-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .pager {
        justify-content: space-between;
    }
}

@media (max-width: 640px) {
    .stat-grid, .stat-grid.compact, .chart-grid, .detail-grid, .settings-grid {
        grid-template-columns: 1fr;
    }
    .app-content, .app-topbar { padding-left: 16px; padding-right: 16px; }
    .page-toolbar, .topbar-actions { flex-wrap: wrap; }
    .user-meta { display: none; }
    .filter-bar-transactions {
        grid-template-columns: 1fr;
    }
    .filter-submit { grid-column: auto; }
}
