/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --primary: #2563eb;
  --primary-soft: #dbeafe;
  --green: #059669;
  --green-soft: #d1fae5;
  --amber: #d97706;
  --amber-soft: #fef3c7;
  --red: #dc2626;
  --red-soft: #fee2e2;
  --purple: #7c3aed;
  --purple-soft: #ede9fe;
  --slate: #475569;
  --slate-soft: #e2e8f0;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  --radius: 24px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button, input, select { font-family: inherit; }

button {
  border: 0;
  background: var(--primary);
  color: #fff;
  border-radius: 14px;
  padding: 11px 15px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

button:hover { filter: brightness(0.98); transform: translateY(-1px); }

button.ghost {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
}

input, select {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 14px;
  padding: 10px 12px;
  outline: none;
  min-width: 150px;
}

input:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-soft);
}

.app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

.sidebar {
  min-height: 100vh;
  background: #0f172a;
  color: #fff;
  padding: 24px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}

.brand-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.25);
  display: grid;
  place-items: center;
}

.brand b { display: block; font-size: 18px; }
.brand span { color: #94a3b8; font-size: 13px; }

.sidebar nav {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
}

.sidebar nav a {
  padding: 12px;
  border-radius: 14px;
  color: #cbd5e1;
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
}

.sidebar nav a.active,
.sidebar nav a:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.sidebar-footer {
  margin-top: 32px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
}

.green { color: #86efac; }
.red { color: #fecaca; }

.content {
  padding: 28px;
  width: 100%;
  min-width: 0;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.topbar h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.05em;
}

.topbar p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.topbar-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.meta-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 12px;
  gap: 12px;
  margin-bottom: 18px;
}

.meta-strip div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 13px;
}

.meta-strip span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 4px;
}

.meta-strip b {
  font-size: 13px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 16px;
  gap: 16px;
  margin-bottom: 18px;
}

.kpi, .gateway-card, .panel, .login-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.kpi {
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.kpi::after {
  content: "";
  width: 120px;
  height: 120px;
  position: absolute;
  right: -35px;
  bottom: -45px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.07);
}

.kpi-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.kpi span {
  color: var(--muted);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.kpi strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.kpi small {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.kpi i {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
}

.kpi-success i { background: var(--green-soft); color: var(--green); }
.kpi-warning i { background: var(--amber-soft); color: var(--amber); }
.kpi-muted i { background: var(--slate-soft); color: var(--slate); }
.kpi-blue i { background: var(--primary-soft); color: var(--primary); }

.gateway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 16px;
  gap: 16px;
  margin-bottom: 18px;
}

.gateway-card {
  padding: 18px;
}

.gateway-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gateway-card strong {
  display: block;
  font-size: 28px;
  letter-spacing: -0.04em;
  margin-top: 16px;
}

.gateway-card small {
  color: var(--muted);
}

.gateway-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  gap: 10px;
  margin-top: 16px;
}

.gateway-stats div {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
}

.gateway-stats span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.gateway-stats b {
  display: block;
  margin: 4px 0;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-gap: 18px;
  gap: 18px;
  margin-bottom: 18px;
}

.panel {
  padding: 22px;
  margin-bottom: 18px;
}

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

.panel h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.panel p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 18px;
}

table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  background: #fff;
}

th {
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  background: #f8fafc;
  padding: 13px 14px;
  border-bottom: 1px solid var(--border);
}

td {
  padding: 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

tr:hover td { background: #fafafa; }

.gateway, .pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.gateway {
  background: var(--primary-soft);
  color: var(--primary);
  text-transform: uppercase;
}

.gateway-tap { background: #dbeafe; color: #1d4ed8; }
.gateway-tabby { background: #ede9fe; color: #6d28d9; }
.gateway-tamara { background: #dcfce7; color: #15803d; }

.pill-success { background: var(--green-soft); color: var(--green); }
.pill-muted { background: var(--slate-soft); color: var(--slate); }
.pill-warning { background: var(--amber-soft); color: var(--amber); }
.pill-danger, .pill-review { background: var(--red-soft); color: var(--red); }

.negative {
  color: var(--red);
  font-weight: 900;
}

.bar-list {
  display: grid;
  grid-gap: 12px;
  gap: 12px;
}

.mini-bar-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
  font-size: 13px;
}

.mini-bar-meta span { color: var(--muted); }
.mini-bar-meta b { font-size: 13px; }

.mini-bar-track {
  height: 10px;
  background: #eef2f7;
  border-radius: 999px;
  overflow: hidden;
}

.mini-bar-track div {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #60a5fa);
  border-radius: 999px;
}

.aging-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 12px;
  gap: 12px;
}

.aging-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
}

.aging-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.aging-card strong {
  display: block;
  margin: 8px 0 3px;
  font-size: 28px;
}

.aging-card small { color: var(--muted); }

.filter-pair {
  display: flex;
  gap: 10px;
}

.workbench-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 12px;
  gap: 12px;
  margin-bottom: 14px;
}

.workbench-summary div {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
}

.workbench-summary span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.workbench-summary b {
  display: block;
  margin-top: 6px;
  font-size: 22px;
}

.reason {
  max-width: 560px;
  color: #374151;
  line-height: 1.6;
}

.checklist {
  display: grid;
  grid-gap: 11px;
  gap: 11px;
}

.checklist div {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  border-radius: 14px;
}

.system-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  gap: 10px;
}

.system-grid div {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
}

.system-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.system-grid b {
  display: block;
  margin-top: 6px;
  font-size: 20px;
}

.sync-list {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
  margin-top: 14px;
}

.sync-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  grid-gap: 8px;
  gap: 8px;
  padding: 10px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid var(--border);
}

.sync-item span { color: var(--muted); }
.sync-item small { color: var(--muted); }

.button-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.user-form {
  display: grid;
  grid-template-columns: 1fr 1fr 180px auto;
  grid-gap: 10px;
  gap: 10px;
  margin-bottom: 14px;
}

.user-list {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
}

.user-list div {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
}

.message {
  margin: 14px 0;
  padding: 12px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: #1d4ed8;
  font-weight: 800;
}

.message.danger {
  background: var(--red-soft);
  color: var(--red);
}

.empty {
  padding: 20px;
  color: var(--muted);
  background: var(--surface-2);
  border-radius: 16px;
}

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.login-card {
  width: min(480px, 100%);
  padding: 30px;
}

.login-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--primary-soft);
  color: var(--primary);
}

.login-card h1 { margin: 18px 0 8px; letter-spacing: -0.04em; }
.login-card p { color: var(--muted); line-height: 1.7; }

.login-form {
  display: grid;
  grid-gap: 14px;
  gap: 14px;
  margin-top: 18px;
}

.login-form label {
  display: grid;
  grid-gap: 6px;
  gap: 6px;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .app { grid-template-columns: 1fr; }
  .sidebar { position: static; min-height: auto; }
  .sidebar nav { grid-template-columns: repeat(4, 1fr); }
  .kpi-grid, .gateway-grid, .meta-strip { grid-template-columns: repeat(2, 1fr); }
  .dashboard-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .content { padding: 14px; }
  .topbar, .panel-head { flex-direction: column; }
  .kpi-grid, .gateway-grid, .meta-strip, .workbench-summary, .system-grid, .user-form { grid-template-columns: 1fr; }
  .sidebar nav { grid-template-columns: 1fr; }
}

.settlement-note {
  margin-top: 14px;
  padding: 13px 14px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid var(--border);
  color: var(--muted);
  line-height: 1.7;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 12px;
  gap: 12px;
  margin-bottom: 14px;
}

.job-grid div {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 13px;
}

.job-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 5px;
}

.job-grid b {
  font-size: 13px;
  word-break: break-word;
}

.log-box {
  max-height: 360px;
  overflow: auto;
  background: #0f172a;
  color: #dbeafe;
  border-radius: 18px;
  padding: 16px;
  line-height: 1.55;
  font-size: 12px;
  direction: ltr;
  white-space: pre-wrap;
}

@media (max-width: 900px) {
  .job-grid {
    grid-template-columns: 1fr;
  }
}

.integrity-table {
  margin-top: 16px;
}

.success-message {
  background: var(--green-soft);
  color: var(--green);
}

.recommended-action {
  font-weight: 900;
  color: var(--amber);
  max-width: 260px;
  line-height: 1.5;
}

.cod-mini-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 12px;
  gap: 12px;
  margin: 14px 0 16px;
}

.cod-mini-strip div {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 13px;
}

.cod-mini-strip span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 5px;
}

.cod-mini-strip b {
  font-size: 18px;
}

@media (max-width: 900px) {
  .cod-mini-strip {
    grid-template-columns: 1fr;
  }
}

.range-home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0;
  padding: 11px 16px;
  border-radius: 14px;
  background: #2563eb;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
}

.range-home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 14px 0;
  padding: 12px 18px;
  border-radius: 14px;
  background: #2563eb;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
}

/* Finance UI Suite */
.fx-page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px;
  background: #f5f7fb;
  color: #101828;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.fx-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.fx-top h1 { margin: 0; font-size: 32px; }
.fx-top p { margin: 8px 0 0; color: #667085; line-height: 1.7; }
.fx-actions, .fx-range, .fx-presets {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.fx-link, .fx-range button, .fx-btn {
  border: 0;
  background: #2563eb;
  color: #fff !important;
  text-decoration: none;
  border-radius: 13px;
  padding: 11px 15px;
  font-weight: 900;
  cursor: pointer;
}
.fx-range button.ghost, .fx-btn.ghost {
  background: #eef4ff;
  color: #1d4ed8 !important;
}
.fx-range input, .fx-search input {
  border: 1px solid #d0d5dd;
  border-radius: 12px;
  padding: 11px;
  background: #fff;
}
.fx-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 14px;
  gap: 14px;
  margin: 16px 0;
}
.fx-card {
  background: #fff;
  border: 1px solid #e4e7ec;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(16,24,40,.06);
}
.fx-card span { color: #667085; display:block; margin-bottom:8px; font-size:13px; }
.fx-card b { font-size:25px; display:block; direction:ltr; text-align:right; }
.fx-card small { color:#667085; display:block; margin-top:8px; line-height:1.5; }
.fx-card.success b, .fx-card.good b { color:#047857; }
.fx-card.warning b, .fx-card.warn b { color:#b45309; }
.fx-card.blue b { color:#1d4ed8; }
.fx-panel {
  background: #fff;
  border: 1px solid #e4e7ec;
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(16,24,40,.06);
  margin-top: 16px;
}
.fx-panel-head {
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:flex-start;
  flex-wrap:wrap;
  margin-bottom: 12px;
}
.fx-panel h2 { margin:0 0 8px; font-size:20px; }
.fx-panel p { margin:0; color:#667085; line-height:1.6; }
.fx-grid { display:grid; grid-template-columns:1.2fr .8fr; grid-gap:16px; gap:16px; }
.fx-table-wrap { overflow-x:auto; }
.fx-panel table { width:100%; border-collapse:collapse; }
.fx-panel th, .fx-panel td { padding:12px; border-bottom:1px solid #edf0f5; text-align:right; vertical-align:top; }
.fx-panel th { color:#667085; font-size:13px; }
.fx-badge {
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  background:#eef4ff;
  color:#1d4ed8;
  font-weight:900;
  font-size:12px;
  white-space:nowrap;
}
.fx-badge.good { background:#ecfdf3; color:#047857; }
.fx-badge.warn { background:#fffaeb; color:#b45309; }
.fx-badge.muted { background:#f2f4f7; color:#475467; }
.fx-empty { color:#667085; padding:20px; }
.fx-error {
  background:#fff1f2;
  color:#9f1239;
  border:1px solid #fecdd3;
  padding:12px;
  border-radius:14px;
  margin:12px 0;
  direction:ltr;
  text-align:left;
  white-space:pre-wrap;
}
.fx-bar-chart {
  min-height:190px;
  display:flex;
  align-items:end;
  gap:6px;
  overflow-x:auto;
  padding:12px 4px 6px;
  direction:ltr;
}
.fx-bar-item {
  min-width:26px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
}
.fx-bar {
  width:16px;
  background:#2563eb;
  border-radius:9px 9px 3px 3px;
}
.fx-bar-item span {
  font-size:10px;
  color:#667085;
  writing-mode:vertical-rl;
  transform:rotate(180deg);
  max-height:46px;
}
.fx-gateway-grid { display:grid; grid-gap:14px; gap:14px; }
.fx-gateway-card {
  border:1px solid #e4e7ec;
  border-radius:18px;
  padding:14px;
  background:#f9fafb;
}
.fx-gateway-title {
  display:flex;
  justify-content:space-between;
  gap:10px;
  direction:ltr;
  margin-bottom:10px;
}
.fx-stack {
  display:flex;
  height:14px;
  overflow:hidden;
  border-radius:999px;
  background:#eef2f7;
  border:1px solid #e4e7ec;
  margin-bottom:12px;
}
.fx-stack .ok { background:#059669; }
.fx-stack .bad { background:#d97706; }
.fx-stack .mid { background:#94a3b8; }
.fx-mini-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  grid-gap:8px;
  gap:8px;
}
.fx-mini-grid div {
  background:#fff;
  border:1px solid #e4e7ec;
  border-radius:14px;
  padding:10px;
}
.fx-mini-grid span { display:block; color:#667085; font-size:12px; margin-bottom:5px; }
.fx-mini-grid b { display:block; direction:ltr; text-align:right; }
.fx-mini-grid small { color:#667085; }
.fx-search {
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:14px;
}
.fx-search input { flex:1 1; min-width:260px; }
.fx-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  direction:ltr;
  text-align:left !important;
}
.fx-reason { max-width:390px; line-height:1.6; color:#475467; }
.finance-app-launcher {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 14px 0;
}
.finance-app-launcher a {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:14px;
  background:#2563eb;
  color:#fff !important;
  text-decoration:none;
  font-weight:900;
  box-shadow:0 10px 24px rgba(37,99,235,.18);
}
@media (max-width: 1000px) {
  .fx-cards, .fx-grid, .fx-mini-grid { grid-template-columns:1fr; }
  .fx-page { padding:16px; }
}

.accounting-entry-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #eff6ff, #ffffff);
  border: 1px solid #bfdbfe;
  border-radius: 22px;
  padding: 18px;
  margin: 16px 0;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.08);
}

.accounting-entry-panel h2 {
  margin: 0 0 6px;
}

.accounting-entry-panel p {
  margin: 0;
  color: #475467;
}

.accounting-entry-panel a {
  background: #2563eb;
  color: #ffffff !important;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 900;
}

.accounting-entry-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #eff6ff, #ffffff);
  border: 1px solid #bfdbfe;
  border-radius: 22px;
  padding: 18px;
  margin: 16px 0;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.08);
}

.accounting-entry-panel h2 {
  margin: 0 0 6px;
}

.accounting-entry-panel p {
  margin: 0;
  color: #475467;
}

.accounting-entry-panel a {
  background: #2563eb;
  color: #ffffff !important;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 900;
}

