:root {
  --rf-navy: #102f49;
  --rf-navy-2: #173f5f;
  --rf-blue: #2563eb;
  --rf-teal: #0f9f8f;
  --rf-gold: #f0b429;
  --rf-bg: #f3f6fb;
  --rf-card: #ffffff;
  --rf-border: #e2e8f0;
  --rf-muted: #64748b;
  --rf-text: #172033;
  --rf-radius: 18px;
  --rf-sidebar: 272px;
}

* { box-sizing: border-box; }
html { min-height: 100%; }
body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 88% 3%, rgba(37,99,235,.055), transparent 24rem),
    radial-gradient(circle at 12% 92%, rgba(15,159,143,.05), transparent 26rem),
    var(--rf-bg);
  color: var(--rf-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--rf-blue); }
.min-w-0 { min-width: 0; }

.app-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--rf-sidebar);
  padding: 22px 16px 16px;
  flex-direction: column;
  color: #fff;
  background:
    radial-gradient(circle at 0 0, rgba(64, 158, 255, .22), transparent 36%),
    linear-gradient(165deg, #102f49 0%, #0a2438 100%);
  z-index: 1030;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 10px 18px;
  color: #fff;
  text-decoration: none;
}
.brand-lockup:hover { color: inherit; }
.brand-lockup strong, .brand-lockup small { display: block; }
.brand-lockup strong { font-size: 1.02rem; letter-spacing: -.02em; }
.brand-lockup small { color: #9fb7c8; font-size: .72rem; margin-top: 1px; }
.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  font-weight: 800;
  letter-spacing: -.06em;
  background: linear-gradient(145deg, #1ba898, #2563eb);
  box-shadow: 0 10px 24px rgba(15, 159, 143, .28);
}
.app-nav { overflow-y: auto; padding-right: 2px; }
.nav-section-label {
  margin: 18px 11px 7px;
  color: #809aac;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.app-nav-link {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 3px 0;
  padding: 10px 12px;
  border-radius: 11px;
  color: #c9d7e2;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 560;
  transition: .18s ease;
}
.app-nav-link i { width: 20px; font-size: 1.04rem; }
.app-nav-link:hover { color: #fff; background: rgba(255,255,255,.08); }
.app-nav-link.active { color: #fff; background: linear-gradient(90deg, rgba(37,99,235,.7), rgba(15,159,143,.64)); box-shadow: 0 8px 22px rgba(0,0,0,.14); }
.app-nav-light .app-nav-link { color: #40556a; }
.app-nav-light .app-nav-link:hover { color: var(--rf-navy); background: #edf3f8; }
.app-nav-light .app-nav-link.active { color: #fff; }
.sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 13px 10px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.sidebar-user strong, .sidebar-user small { display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.sidebar-user strong { font-size: .83rem; }
.sidebar-user small { color: #9fb7c8; font-size: .7rem; }
.sidebar-user a { color: #c9d7e2; }
.sidebar-signout { border: 0; padding: 6px; color: #c9d7e2; background: transparent; border-radius: 8px; }
.sidebar-signout:hover { color: #fff; background: rgba(255,255,255,.08); }
.avatar { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: var(--rf-navy); background: #d9f4ef; font-weight: 800; }

.app-content { min-height: 100vh; margin-left: var(--rf-sidebar); }
.app-topbar {
  position: sticky;
  top: 0;
  z-index: 1020;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px clamp(18px, 3vw, 38px);
  border-bottom: 1px solid rgba(226,232,240,.85);
  background: rgba(243,246,251,.9);
  backdrop-filter: blur(16px);
}
.app-topbar h1 { margin: 0; font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 770; letter-spacing: -.035em; }
.eyebrow { color: var(--rf-teal); font-size: .67rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.topbar-actions { display: flex; align-items: center; gap: 8px; }
.icon-button { width: 42px; height: 42px; display: grid; place-items: center; padding: 0; border: 1px solid var(--rf-border); border-radius: 12px; background: #fff; color: var(--rf-navy); }
.icon-button i { font-size: 1.2rem; }
.app-main { width: 100%; max-width: 1560px; margin: 0 auto; padding: 26px clamp(16px, 3vw, 38px) 45px; }

.card, .panel {
  border: 1px solid rgba(226,232,240,.9);
  border-radius: var(--rf-radius);
  background: var(--rf-card);
  box-shadow: 0 12px 34px rgba(31, 54, 79, .065);
}
.panel { padding: clamp(16px, 2.5vw, 24px); }
.panel-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.panel-title { margin: 0; font-size: 1rem; font-weight: 760; color: var(--rf-navy); }
.panel-subtitle { margin: 4px 0 0; color: var(--rf-muted); font-size: .79rem; }
.section-grid { display: grid; gap: 18px; }

.kpi-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.kpi-card {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--rf-border);
  border-radius: var(--rf-radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(31,54,79,.055);
}
.kpi-card::after { content: ""; position: absolute; width: 90px; height: 90px; right: -35px; top: -35px; border-radius: 50%; background: var(--kpi-soft, #e7f0ff); }
.kpi-icon { width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 14px; border-radius: 12px; color: var(--kpi, var(--rf-blue)); background: var(--kpi-soft, #e7f0ff); font-size: 1.05rem; }
.kpi-label { color: var(--rf-muted); font-size: .69rem; font-weight: 780; letter-spacing: .07em; text-transform: uppercase; }
.kpi-value { margin-top: 4px; color: var(--rf-navy); font-size: clamp(1.25rem, 2.4vw, 1.72rem); font-weight: 790; letter-spacing: -.045em; }
.kpi-note { margin-top: 5px; color: var(--rf-muted); font-size: .73rem; }
.kpi-card > span { display: block; color: var(--rf-muted); font-size: .69rem; font-weight: 780; letter-spacing: .07em; text-transform: uppercase; }
.kpi-card > strong { position: relative; z-index: 1; display: block; margin-top: 8px; color: var(--rf-navy); font-size: clamp(1.15rem, 2.2vw, 1.55rem); line-height: 1.1; letter-spacing: -.04em; }
.kpi-card > small { position: relative; z-index: 1; display: block; margin-top: 8px; color: var(--rf-muted); font-size: .72rem; }
.kpi-green { --kpi: #0f8d75; --kpi-soft: #dff7f0; }
.kpi-red { --kpi: #d94949; --kpi-soft: #fde9e8; }
.kpi-gold { --kpi: #b67705; --kpi-soft: #fff3d4; }
.kpi-blue { --kpi: #2563eb; --kpi-soft: #e6efff; }

.table-responsive { border-radius: 13px; }
.table { margin-bottom: 0; font-size: .82rem; }
.table > :not(caption) > * > * { padding: .73rem .72rem; border-bottom-color: #edf1f5; vertical-align: middle; }
.table thead th { color: #6b7e91; background: #f7f9fc; font-size: .65rem; font-weight: 800; letter-spacing: .055em; text-transform: uppercase; white-space: nowrap; }
.table tbody tr:hover { background: #f9fbfd; }
.money-positive { color: #087c69; font-weight: 700; }
.money-negative { color: #c23b3b; font-weight: 700; }
.badge-soft { display: inline-flex; align-items: center; gap: 5px; padding: .38rem .58rem; border-radius: 999px; font-size: .68rem; font-weight: 750; }
.badge-soft-success { color: #08725f; background: #dcf7ee; }
.badge-soft-warning { color: #8b5b00; background: #fff1c7; }
.badge-soft-danger { color: #a93333; background: #fde6e5; }
.badge-soft-info { color: #175d89; background: #e3f2fc; }
.badge-soft-secondary { color: #526475; background: #eaf0f5; }

.form-label { color: #405267; font-size: .76rem; font-weight: 700; }
.form-control, .form-select {
  min-height: 44px;
  border-color: #dbe3ec;
  border-radius: 11px;
  font-size: .88rem;
  box-shadow: none !important;
}
.form-control:focus, .form-select:focus { border-color: #6aa7e8; box-shadow: 0 0 0 3px rgba(37,99,235,.1) !important; }
.input-group-text { border-color: #dbe3ec; border-radius: 11px; background: #f7f9fc; }
.password-toggle { min-width: 48px; border: 1px solid #dbe3ec; border-left: 0; color: #526475; background: #f7f9fc; box-shadow: none !important; }
.password-toggle:hover, .password-toggle:focus { color: var(--rf-blue); border-color: #6aa7e8; background: #edf4ff; }
.btn { border-radius: 10px; font-weight: 680; font-size: .82rem; }
.btn-brand { color: #fff; border: 0; background: linear-gradient(135deg, #2563eb, #0f9f8f); box-shadow: 0 8px 20px rgba(37,99,235,.2); }
.btn-brand:hover, .btn-brand:focus { color: #fff; filter: brightness(.95); }
.filter-bar { display: grid; grid-template-columns: repeat(5, minmax(130px,1fr)); gap: 12px; align-items: end; }
.filter-actions { display: flex; gap: 8px; }
.empty-state { padding: 38px 18px; text-align: center; color: var(--rf-muted); }
.empty-state i { display: block; margin-bottom: 10px; color: #9db1c3; font-size: 2rem; }
.summary-strip { display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 14px 16px; border-radius: 13px; background: #f5f8fb; }
.summary-strip span { color: var(--rf-muted); font-size: .73rem; }
.summary-strip strong { display: block; color: var(--rf-navy); font-size: 1rem; }
.statement-summary { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); overflow: hidden; border: 1px solid var(--rf-border); border-radius: var(--rf-radius); background: #fff; box-shadow: 0 10px 28px rgba(31,54,79,.055); }
.statement-summary > div { min-height: 102px; display: flex; flex-direction: column; justify-content: center; padding: 18px 22px; border-right: 1px solid var(--rf-border); }
.statement-summary > div:last-child { border-right: 0; }
.statement-summary span { color: var(--rf-muted); font-size: .69rem; font-weight: 780; letter-spacing: .07em; text-transform: uppercase; }
.statement-summary strong { margin-top: 6px; color: var(--rf-navy); font-size: 1.35rem; line-height: 1.2; }
.print-approval { display: none; }

.table-actions { display: inline-flex; align-items: center; gap: 5px; }
.table-actions form { margin: 0; }
.btn-soft-danger { color: #b43535; border: 1px solid #f4d2d0; background: #fff3f2; }
.btn-soft-danger:hover { color: #fff; border-color: #cf4646; background: #cf4646; }
.is-submitting { opacity: .7; cursor: wait !important; }

.hero-panel,
.ledger-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(37,99,235,.16);
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 0, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(135deg, #102f49 0%, #175b72 58%, #0f9f8f 115%);
  box-shadow: 0 20px 48px rgba(16,47,73,.16);
}
.hero-panel h2,.ledger-hero h2 { margin: 5px 0 7px; font-size: clamp(1.4rem,3vw,2rem); font-weight: 800; letter-spacing: -.045em; }
.hero-panel p,.ledger-hero p { max-width: 760px; margin: 0; color: #d6e4ed; }
.hero-kicker { color: #8ee5d7; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-stat,.ledger-balance { min-width: 175px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.18); border-radius: 18px; background: rgba(255,255,255,.1); backdrop-filter: blur(10px); }
.hero-stat strong,.ledger-balance strong { display: block; color: #fff; font-size: 1.65rem; line-height: 1; }
.hero-stat span,.ledger-balance span { display: block; margin-top: 7px; color: #cae0eb; font-size: .72rem; }

.report-card-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.report-card {
  position: relative;
  min-height: 235px;
  display: flex;
  flex-direction: column;
  padding: 23px;
  border: 1px solid var(--rf-border);
  border-radius: 20px;
  color: var(--rf-text);
  background: #fff;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(31,54,79,.055);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.report-card:hover { transform: translateY(-4px); border-color: rgba(37,99,235,.32); color: var(--rf-text); box-shadow: 0 20px 42px rgba(31,54,79,.11); }
.report-card-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 15px; color: #176e87; background: linear-gradient(145deg,#e8f1ff,#dcf7ee); font-size: 1.25rem; }
.report-card-tag { position: absolute; top: 24px; right: 22px; padding: 5px 9px; border-radius: 999px; color: #557086; background: #f1f5f9; font-size: .64rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.report-card > strong { color: var(--rf-navy); font-size: 1rem; }
.report-card p { margin: 8px 0 20px; color: var(--rf-muted); font-size: .79rem; line-height: 1.55; }
.report-card-link { margin-top: auto; color: var(--rf-blue); font-size: .77rem; font-weight: 750; }

.quality-list { display: grid; gap: 2px; }
.quality-list > div { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px solid #edf1f5; font-size: .78rem; }
.quality-list > div:last-child { border-bottom: 0; }
.quality-list span { color: var(--rf-muted); }
.danger-zone { border-color: #f1c9c7; background: linear-gradient(180deg,#fff,#fffafa); }
.opening-row { --bs-table-bg: #f3f7fa; color: #51677a; }
.ledger-table td:nth-child(3) { min-width: 240px; }
.print-report-header,.print-report-footer { display: none; }
details summary { color: var(--rf-blue); cursor: pointer; font-size: .72rem; font-weight: 700; }
details pre { max-width: 620px; max-height: 260px; overflow: auto; margin-top: 8px; padding: 12px; border-radius: 10px; background: #0f2435; color: #dcecf5; font-size: .68rem; }

.mobile-menu { width: min(88vw, 340px) !important; }
.mobile-menu .offcanvas-header { border-bottom: 1px solid var(--rf-border); }
.mobile-menu .brand-lockup { padding: 0; }
.mobile-menu .brand-lockup small { color: var(--rf-muted); }
.mobile-bottom-nav {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1040;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 7px max(8px, env(safe-area-inset-right)) calc(7px + env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
  border-top: 1px solid var(--rf-border);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 -10px 30px rgba(31,54,79,.08);
}
.mobile-bottom-nav a { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 5px; color: #758799; text-decoration: none; font-size: .61rem; font-weight: 700; }
.mobile-bottom-nav i { font-size: 1.16rem; }
.mobile-bottom-nav a.active { color: var(--rf-blue); }

.login-shell { min-height: 100vh; display: grid; place-items: center; padding: 22px; background: radial-gradient(circle at 15% 10%, rgba(37,99,235,.2), transparent 35%), linear-gradient(145deg, #0a2438, #153f5e); }
.login-card { width: min(100%, 430px); padding: 30px; border-radius: 24px; background: #fff; box-shadow: 0 28px 75px rgba(0,0,0,.3); }
.login-card .brand-mark { margin-bottom: 22px; }
.login-card h1 { color: var(--rf-navy); font-size: 1.65rem; font-weight: 800; letter-spacing: -.04em; }

@media (max-width: 1199.98px) {
  .kpi-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .filter-bar { grid-template-columns: repeat(3, minmax(130px,1fr)); }
  .report-card-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 991.98px) {
  body { padding-bottom: 76px; }
  .app-content { margin-left: 0; }
  .app-main { padding-top: 18px; padding-bottom: 30px; }
  .app-topbar { min-height: 70px; padding: 11px 15px; }
}
@media (max-width: 575.98px) {
  .kpi-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .kpi-card { min-height: 120px; padding: 15px; }
  .kpi-value { font-size: 1.12rem; }
  .filter-bar { grid-template-columns: 1fr; }
  .filter-actions .btn { flex: 1; }
  .panel { padding: 15px; border-radius: 15px; }
  .panel-header { flex-direction: column; }
  .topbar-actions .btn-light { padding-inline: 10px; }
  .table { font-size: .76rem; }
  .hero-panel,.ledger-hero { align-items: flex-start; flex-direction: column; border-radius: 19px; }
  .hero-stat,.ledger-balance { width: 100%; }
  .report-card-grid { grid-template-columns: 1fr; }
  .statement-summary { grid-template-columns: 1fr; }
  .statement-summary > div { min-height: 82px; border-right: 0; border-bottom: 1px solid var(--rf-border); }
  .statement-summary > div:last-child { border-bottom: 0; }
}

@media print {
  @page { size: A4 landscape; margin: 0; }
  body { background: #fff !important; color: #111; padding: 0 !important; }
  .no-print, .app-sidebar, .app-topbar, .mobile-bottom-nav, .offcanvas, .btn, form { display: none !important; }
  .app-content { margin: 0 !important; }
  .app-main { max-width: none !important; padding: 12mm 12mm 18mm !important; }
  .panel, .card, .kpi-card { box-shadow: none !important; border-color: #b9c4cf !important; }
  .panel { padding: 4mm !important; border-radius: 3mm !important; break-inside: auto; }
  .kpi-card { min-height: 0 !important; padding: 3mm !important; break-inside: avoid; }
  .kpi-grid { grid-template-columns: repeat(4, 1fr) !important; }
  .kpi-card::after,.kpi-icon { display: none !important; }
  .kpi-value,.kpi-card > strong { font-size: 12pt !important; }
  .table-responsive { overflow: visible !important; }
  .table { width: 100% !important; font-size: 8.2pt; }
  .table > :not(caption) > * > * { padding: 1.7mm 1.4mm !important; }
  .table thead th { color: #263746 !important; background: #edf1f4 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .table thead { display: table-header-group; }
  .table tfoot { display: table-footer-group; }
  .table tr { break-inside: avoid; }
  .print-title { display: block !important; margin-bottom: 12px; }
  .print-report-header { display: grid !important; grid-template-columns: minmax(0,1fr) 72mm; align-items: end; gap: 10mm; margin-bottom: 6mm; padding-bottom: 4mm; border-bottom: 1.5px solid #102f49; }
  .print-report-header h2 { margin: 3mm 0 0; color: #102f49; font-size: 18pt; line-height: 1.05; }
  .print-report-header p { margin: 1.5mm 0 0; color: #516273; font-size: 8.5pt; }
  .print-brand-line { display: flex; align-items: center; gap: 2.5mm; }
  .print-brand-mark { width: 10mm; height: 10mm; display: grid; place-items: center; border: 1.2px solid #0f8d75; border-radius: 2.2mm; color: #102f49; font-size: 9pt; font-weight: 900; }
  .print-brand { color: #0f8d75; font-size: 8pt; line-height: 1.15; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
  .print-brand small { color: #657586; font-size: 5.8pt; letter-spacing: .06em; }
  .print-meta { min-width: 55mm; display: grid; gap: .8mm; text-align: right; color: #425466; font-size: 7.4pt; }
  .print-meta span { display: block; }
  .print-report-footer { position: fixed; right: 12mm; bottom: 5mm; left: 12mm; display: block !important; padding-top: 2mm; border-top: 1px solid #d4dbe2; color: #657586; text-align: center; font-size: 7pt; }
  .hero-panel,.ledger-hero { padding: 4mm !important; border: 1px solid #b9c4cf !important; color: #102f49 !important; background: #fff !important; box-shadow: none !important; }
  .hero-panel p,.ledger-hero p,.hero-kicker,.hero-stat span,.ledger-balance span { color: #526475 !important; }
  .hero-stat,.ledger-balance { border-color: #b9c4cf !important; background: #fff !important; }
  .hero-stat strong,.ledger-balance strong { color: #102f49 !important; }
  .report-card-grid { grid-template-columns: repeat(3,1fr) !important; }
  .report-card { min-height: 0; box-shadow: none; break-inside: avoid; }
  .statement-summary { grid-template-columns: 1.45fr .7fr 1.35fr !important; margin-bottom: 6mm !important; border: 1px solid #9fadb9 !important; border-radius: 2.5mm !important; box-shadow: none !important; }
  .statement-summary > div { min-height: 20mm; padding: 3.5mm 4mm !important; border-right-color: #c9d2da !important; }
  .statement-summary span { color: #526475 !important; font-size: 7pt; }
  .statement-summary strong { margin-top: 1.5mm; color: #102f49 !important; font-size: 12pt; }
  .print-statement .app-main { padding: 12mm 13mm 18mm !important; }
  .print-statement .print-report-footer { right: 13mm; left: 13mm; }
  .print-statement .print-report-header { grid-template-columns: minmax(0,1fr) 67mm; }
  .print-statement .statement-panel { padding: 0 !important; overflow: hidden; border: 1px solid #9fadb9 !important; border-radius: 2.5mm !important; }
  .print-statement .statement-panel .panel-header { margin: 0 !important; padding: 3.5mm 4mm; border-bottom: 1px solid #c9d2da; background: #f3f6f8 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .print-statement .panel-title { font-size: 11pt; }
  .print-statement .panel-subtitle { font-size: 7.8pt; }
  .print-statement .statement-table { font-size: 9pt; }
  .print-statement .statement-table > :not(caption) > * > * { padding: 3mm 3.2mm !important; }
  .print-statement .statement-table thead th { font-size: 7.2pt; border-bottom: 1.2px solid #6f8190; }
  .print-statement .statement-table tbody tr:nth-child(even) { background: #fafbfc !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .print-statement .statement-table tfoot th { padding-top: 3.4mm !important; padding-bottom: 3.4mm !important; border-top: 1.5px solid #102f49; color: #102f49; font-size: 9.5pt; }
  .print-statement .print-approval { display: grid !important; grid-template-columns: repeat(3,1fr); gap: 14mm; margin-top: 18mm; break-inside: avoid; }
  .print-statement .print-approval div { padding-top: 2.5mm; border-top: 1px solid #6f8190; color: #526475; text-align: center; font-size: 8pt; }
}
