:root {
    color-scheme: light;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
    background: #F6F7F9;
    color: #0F172A;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    --brand-green: #1E8449;
    --brand-green-dark: #145A32;
    --brand-green-soft: #EAF5EE;
    --brand-green-tint: rgba(30, 132, 73, 0.12);
    --brand-green-tint-strong: rgba(30, 132, 73, 0.18);
    --border: #E5E7EB;
    --muted: #64748B;
    --ink: #0F172A;
    --surface: #FFFFFF;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 1px 3px rgba(15, 23, 42, 0.06), 0 6px 20px rgba(15, 23, 42, 0.05);
}

* {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #F6F7F9;
    letter-spacing: -0.005em;
}

.app-shell {
    max-width: 100vw;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.app-shell {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 240px;
    background: #0B1220;
    color: #E2E8F0;
    display: flex;
    flex-direction: column;
    padding: 22px 18px;
    gap: 22px;
    border-right: 1px solid rgba(255,255,255,0.04);
}

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 4px 4px;
}

.brand-logo {
    max-width: 150px;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.sidebar-nav {
    display: grid;
    gap: 4px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 10px;
    color: #CBD5E1;
    background: transparent;
    font-size: 0.92rem;
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease;
}

.sidebar-link:hover {
    background: rgba(255, 255, 255, 0.04);
    color: #F8FAFC;
}

.sidebar-link.active {
    background: var(--brand-green-tint-strong);
    color: #FFFFFF;
    font-weight: 600;
}

.sidebar-icon {
    display: inline-flex;
    opacity: 0.85;
}

.sidebar-link.active .sidebar-icon { opacity: 1; color: var(--brand-green); }

.sidebar-footer {
    margin-top: auto;
    color: #64748B;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.sidebar-logout {
    margin-top: 20px;
}

.btn-sidebar {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    padding: 12px 0;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: 100%;
    overflow: hidden;
    padding: 28px 32px;
}

.dashboard-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
}

.page-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.header-actions .btn {
    white-space: nowrap;
}

.page-header-brand {
    display: none;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.page-header-logo {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: invert(1) brightness(0.15);
    flex-shrink: 0;
}

.page-header-name {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.01em;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.eyebrow {
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-size: 0.72rem;
    font-weight: 600;
    color: #94A3B8;
}

.section-head {
    margin-bottom: 18px;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(1.35rem, 1.15rem + 0.6vw, 1.7rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.stats-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 24px;
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--surface);
    padding: 16px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    transition: box-shadow 0.25s ease, backdrop-filter 0.25s ease;
    backdrop-filter: blur(8px);
}

.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: var(--shadow-sm);
}

.stat-title {
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-bottom: 8px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
}

.stat-sub {
    margin-top: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0;
}

.stat-card--primary {
    border-left: 3px solid var(--brand-green);
}

.stat-card--accent {
    border-left: 3px solid var(--brand-green-dark);
}

.stat-card--paid {
    border-left: 3px solid #2563EB;
}

.card-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1.5fr 1fr;
    align-items: start;
}

.card,
.table-card,
.card-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    box-shadow: var(--shadow-sm);
    min-height: 0;
}

.card-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.card-header h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.card-header p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.table-wrap {
    overflow-x: auto;
    margin: 0 -8px;
    padding: 0 8px;
}

.recent-cheques-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.recent-cheques-card .table-wrap {
    flex: 1 1 auto;
    min-height: 0;
    max-height: 52vh;
    overflow-y: auto;
    overflow-x: hidden;
    border-top: 1px solid var(--border);
    padding-top: 12px;
}

.recent-cheques-card .cheques-table thead th {
    position: sticky;
    top: 0;
    background: var(--surface);
    z-index: 1;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

th,
td {
    padding: 13px 10px;
    text-align: left;
    border-bottom: 1px solid #EEF2F6;
    font-size: 0.9rem;
}

th {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

tbody tr:last-child td {
    border-bottom: none;
}

.mono {
    font-family: 'Space Mono', ui-monospace, SFMono-Regular, monospace;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.list-panel {
    display: grid;
    gap: 16px;
}

.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #FBFCFD;
}

.list-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--ink);
}

.list-meta {
    color: var(--muted);
    font-size: 0.85rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.4;
}

.badge-paid { background: #DCFCE7; color: #166534; }
.badge-overdue { background: #FEE2E2; color: #B91C1C; }

tr.row-overdue td {
    background: #FEF2F2;
    color: #B91C1C;
    font-weight: 600;
}

tr.row-paid td {
    color: #94A3B8;
}

.cheque-list {
    display: grid;
    gap: 10px;
}

.cheque-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.cheque-card[open] {
    box-shadow: var(--shadow-md);
    border-color: #D1D5DB;
}

.cheque-card.is-overdue {
    background: #FEF7F7;
    border-color: #FCA5A5;
}

.cheque-card.is-paid {
    background: #FAFBFC;
}

.cheque-card-summary {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    cursor: pointer;
    list-style: none;
}

.cheque-card-summary::-webkit-details-marker { display: none; }
.cheque-card-summary::marker { content: ''; }

.cheque-card-lead {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.cheque-card-lead .badge {
    justify-self: start;
    margin-bottom: 6px;
}

.cheque-card-vendor {
    font-weight: 600;
    font-size: 0.98rem;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.cheque-card.is-overdue .cheque-card-vendor,
.cheque-card.is-overdue .cheque-card-amount {
    color: #B91C1C;
}

.cheque-card.is-overdue .cheque-card-meta {
    color: #C2410C;
}

.cheque-card.is-paid .cheque-card-vendor,
.cheque-card.is-paid .cheque-card-amount {
    color: #64748B;
}

.cheque-card-meta {
    color: var(--muted);
    font-size: 0.85rem;
}

.cheque-card-trail {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    flex-shrink: 0;
    text-align: right;
}

.cheque-card-amount {
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--ink);
    white-space: nowrap;
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
}

.cheque-card-chev {
    color: #64748B;
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.cheque-card[open] .cheque-card-chev {
    transform: rotate(180deg);
}

.cheque-card-body {
    padding: 4px 20px 18px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.cheque-details {
    display: grid;
    margin: 0 0 14px;
    padding: 0;
}

.cheque-details > div {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #EEF2F6;
    gap: 12px;
}

.cheque-details > div:last-child { border-bottom: none; }

.cheque-details dt {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 500;
    margin: 0;
}

.cheque-details dd {
    margin: 0;
    color: var(--ink);
    font-weight: 500;
    font-size: 0.9rem;
    text-align: right;
    word-break: break-word;
    font-variant-numeric: tabular-nums;
}

.cheque-card.is-overdue .cheque-details dd { color: #B91C1C; }

.cheque-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cheque-card-actions .btn-small {
    flex: 1 1 auto;
    min-width: 100px;
}

.filter-toggle {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--ink);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.filter-toggle-chev {
    transition: transform 0.2s ease;
}

.filter-panel.is-open .filter-toggle-chev {
    transform: rotate(180deg);
}

.filter-panel {
    margin-bottom: 20px;
    position: sticky;
    top: 24px;
    z-index: 1;
    background: var(--surface);
    padding: 18px;
    border-radius: 14px;
}

.cheque-list {
    display: grid;
    gap: 10px;
    max-height: calc(100vh - 420px);
    overflow-y: auto;
    padding-right: 8px;
}

.badge-today { background: #FEE2E2; color: #B91C1C; }
.badge-soon { background: #FEF3C7; color: #92400E; }
.badge-pending { background: #E0E7FF; color: #3730A3; }

.empty-state {
    padding: 36px 24px;
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem;
}

.filter-panel {
    margin-bottom: 20px;
    position: sticky;
    top: 24px;
    z-index: 1;
    background: var(--surface);
}

.cheque-list {
    display: grid;
    gap: 10px;
    max-height: calc(100vh - 360px);
    overflow-y: auto;
    padding-right: 8px;
}

.filter-form,
.field-grid {
    display: grid;
    gap: 14px;
}

.filter-form {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: end;
}

.field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
}

.field-grid .form-actions {
    grid-column: 1 / -1;
}

label {
    display: grid;
    gap: 6px;
    font-weight: 500;
    color: #475569;
    font-size: 0.82rem;
    letter-spacing: 0.01em;
}

input[type="text"],
input[type="password"],
input[type="date"],
input[type="number"],
select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #D1D5DB;
    background: var(--surface);
    color: var(--ink);
    font-size: 0.92rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:hover,
select:hover {
    border-color: #94A3B8;
}

input:focus,
select:focus,
button:focus {
    outline: none;
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px var(--brand-green-tint);
}

.form-actions {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 10px;
    margin-top: 4px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
    color: #fff;
    background: var(--brand-green);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.005em;
    transition: background 0.15s ease, box-shadow 0.15s ease;
    box-shadow: var(--shadow-sm);
}

.btn:hover {
    background: var(--brand-green-dark);
}

.btn-warning {
    background: #F59E0B;
    color: #fff;
}

.btn-warning:hover {
    background: #D97706;
}

.btn-secondary {
    background: var(--surface);
    color: var(--ink);
    border: 1px solid var(--border);
    box-shadow: none;
}

.btn-secondary:hover {
    background: #F8FAFC;
    border-color: #CBD5E1;
}

.btn-small {
    padding: 7px 12px;
    font-size: 0.82rem;
    border-radius: 7px;
}

.btn-success { background: #059669; }
.btn-success:hover { background: #047857; }
.btn-danger { background: #DC2626; }
.btn-danger:hover { background: #B91C1C; }

.alert {
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-size: 0.9rem;
    border: 1px solid transparent;
}

.alert-danger { background: #FEF2F2; color: #991B1B; border-color: #FECACA; }
.alert-success { background: #F0FDF4; color: #166534; border-color: #BBF7D0; }

.ui-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ui-modal[hidden] {
    display: none;
}

.ui-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(2px);
}

.ui-modal-card {
    position: relative;
    background: var(--surface);
    border-radius: 14px;
    padding: 22px 22px 18px;
    width: min(400px, 100%);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.20);
    animation: uiModalIn 0.14s ease-out;
    border: 1px solid var(--border);
}

@keyframes uiModalIn {
    from { transform: translateY(6px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.ui-modal-message {
    margin: 0 0 18px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--ink);
}

.ui-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

body.ui-modal-open {
    overflow: hidden;
}

.login-page {
    display: grid;
    place-items: center;
    min-height: 100vh;
    background: #F6F7F9;
    padding: 24px;
}

.login-card,
.install-card {
    width: min(420px, 100%);
    background: var(--surface);
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--border);
}

.login-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.login-logo img {
    max-width: 140px;
    height: auto;
    filter: invert(1) brightness(0.2);
}

.login-brand {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    text-align: center;
    color: var(--ink);
}

.login-subtitle {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 0.9rem;
    text-align: center;
}

.login-form {
    display: grid;
    gap: 14px;
}

.login-form .btn { margin-top: 4px; padding: 12px 16px; }

.install-shell {
    display: grid;
    place-items: center;
    min-height: 100vh;
    background: #F6F7F9;
}

@media (max-width: 1100px) {
    .card-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
    .app-shell { flex-direction: column; }
    .sidebar { width: 100%; flex-direction: row; align-items: center; padding: 14px 18px; gap: 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.04); }
    .brand { padding: 0; margin-right: auto; }
    .brand-logo { max-width: 110px; }
    .sidebar-nav { display: flex; gap: 4px; }
    .sidebar-link { padding: 8px 12px; font-size: 0.85rem; }
    .sidebar-link span:not(.sidebar-icon) { display: none; }
    .sidebar-footer { display: none; }
    .main-content { padding: 22px 20px 36px; }
    .filter-form { grid-template-columns: 1fr; }
}

.bottom-nav {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    background: var(--surface);
    border-top: 1px solid var(--border);
    justify-content: space-around;
    align-items: center;
    gap: 4px;
    padding: 8px 4px calc(8px + env(safe-area-inset-bottom, 0));
    box-shadow: 0 -1px 3px rgba(15, 23, 42, 0.04);
}

.bottom-nav-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 500;
    flex: 1;
    min-width: 0;
    padding: 6px 4px;
    border-radius: 8px;
    transition: color 0.15s ease, background 0.15s ease;
}

.bottom-nav-item span:not(.bottom-icon) {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.bottom-nav-item.active {
    color: var(--brand-green);
    font-weight: 600;
}

.bottom-nav-item:hover {
    background: var(--brand-green-soft);
}

.bottom-nav-item svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 640px) {
    .page-header { justify-content: space-between; gap: 12px; margin-bottom: 14px; }
    .page-header-brand { display: flex; }
    .page-header-logo { width: 30px; height: 30px; }
    .page-header-name { font-size: 0.95rem; }
    .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-bottom: 16px; }
    .sidebar { display: none; }
    .main-content { padding: 18px 14px 96px; }
    .bottom-nav { display: flex; }
    .field-grid { grid-template-columns: minmax(0, 1fr); max-width: 100%; }
    .field-grid > label { min-width: 0; }
    .main-content { width: 100%; max-width: 100vw; }
    .card, .table-card, .card-form { padding: 16px; border-radius: 12px; }
    .stat-card { padding: 12px 14px; border-radius: 10px; }
    .stat-title { font-size: 0.68rem; margin-bottom: 4px; }
    .stat-value { font-size: 1.05rem; line-height: 1.15; }
    .stat-sub { margin-top: 3px; font-size: 0.7rem; }
    .section-head h2 { font-size: 1.15rem; }
    input[type="text"], input[type="password"], input[type="date"], input[type="number"], select { padding: 10px 12px; border-radius: 8px; }
    .btn { padding: 11px 14px; }
    .btn-small { padding: 7px 10px; }
    .bottom-nav-item { font-size: 0.68rem; }

    .filter-toggle { display: flex; }
    .filter-panel .filter-form { display: none; }
    .filter-panel.is-open .filter-form { display: grid; }

    .cheque-card-summary { padding: 14px 16px; gap: 12px; }
    .cheque-card-body { padding: 4px 16px 16px; }
    .cheque-card-vendor { font-size: 0.98rem; }
    .cheque-card-amount { font-size: 0.98rem; }
    .cheque-card-actions .btn-small { flex: 1 1 calc(50% - 4px); min-width: 0; }

    .table-wrap { overflow: visible; margin: 0; padding: 0; }
    .cheques-table { min-width: 0; width: 100%; }
    .cheques-table thead { display: none; }
    .cheques-table, .cheques-table tbody { display: block; }
    .cheques-table tr {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "vendor amount"
            "meta   status";
        gap: 2px 12px;
        align-items: center;
        padding: 12px 4px;
        border-bottom: 1px solid #EEF2F6;
        background: transparent;
    }
    .cheques-table tbody tr:last-child { border-bottom: none; }
    .cheques-table td {
        padding: 0;
        border: none;
        background: transparent;
        font-size: 0.88rem;
        min-width: 0;
    }
    .cheques-table td::before { display: none; }

    .cheques-table td[data-label="Cheque"],
    .cheques-table td[data-label="Bank"] { display: none; }

    .cheques-table td[data-label="Vendor"] {
        grid-area: vendor;
        font-weight: 600;
        color: var(--ink);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .cheques-table td[data-label="Amount"] {
        grid-area: amount;
        font-weight: 700;
        text-align: right;
        color: var(--ink);
        font-variant-numeric: tabular-nums;
        white-space: nowrap;
    }
    .cheques-table td[data-label="Due"] {
        grid-area: meta;
        color: var(--muted);
        font-size: 0.8rem;
        display: flex;
        gap: 6px;
        align-items: baseline;
        overflow: hidden;
    }
    .cheques-table td[data-label="Due"]::before {
        content: attr(data-bank) " · ";
        display: inline;
        color: var(--muted);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        min-width: 0;
        font-weight: 500;
    }
    .cheques-table td[data-label="Status"] {
        grid-area: status;
        text-align: right;
    }

    .cheques-table tr.row-overdue td[data-label="Vendor"],
    .cheques-table tr.row-overdue td[data-label="Amount"],
    .cheques-table tr.row-overdue td[data-label="Due"] { color: #B91C1C; }
}
