/* ============ Valcore Books — Pilot-style client dashboard ============ */

:root {
  /* brand / chrome — navy #16243c + cream #ede7dc scheme */
  --brand: #16243c;
  --brand-deep: #16243c;
  --brand-wash: #e2ecf8;   /* light blue — active nav & brand washes */
  --accent: #ede7dc;
  --page: #f4f4f5;   /* light grey page; cards stay white */
  --card: #ffffff;
  --border: #e9e8e4;
  --ink: #1a2233;
  --ink-2: #565d6e;
  --ink-3: #8b90a0;
  --grid: #f0efec;
  --baseline: #dcdbd6;
  --good: #256c33;       /* readable ink of the green family */
  --good-bg: #d7f5d9;    /* the requested green, as a background */
  --bad: #a23b3b;        /* readable ink of the red family */
  --bad-bg: #f4cccc;     /* the requested red, as a background */
  /* chart series — navy / tan / green, following the scheme */
  --series-1: #16243c;
  --series-2: #c9b28c;
  --series-3: #4f9d5d;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(22, 36, 60, 0.06);
  --topbar-h: 94px;   /* header height — roomy margin around the larger text */
  --font-body: "Inter", Helvetica, Arial, sans-serif;
  --font-head: "Plus Jakarta Sans", "Inter", Helvetica, Arial, sans-serif;
  font-family: var(--font-body);
}
.page-title, .card-title, .topbar-brand,
.stmt-table .section td, .hero-figure, .k-value, .tile-value,
h1, h2, h3 { font-family: var(--font-head); }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: var(--page); color: var(--ink); font-size: 14px; line-height: 1.45; }
a { color: var(--brand); text-decoration: none; }
button { font: inherit; }
input, select, textarea, optgroup { font-family: inherit; }

/* ============ Top bar ============ */
.topbar {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(115deg, #101c31 0%, #16243c 45%, #2c4d84 100%);
  color: #fff;
  height: var(--topbar-h); padding: 0 24px;
  text-transform: capitalize; /* every word in the header starts uppercase */
}
.topbar-left { display: flex; flex-direction: column; justify-content: center; gap: 3px; }
.topbar-brand {
  font-family: var(--font-head);
  font-weight: 700; font-size: 27px; letter-spacing: -.01em;
  line-height: 1.2; white-space: nowrap;
}
.topbar-note { font-size: 15px; opacity: .78; line-height: 1.25; white-space: nowrap; }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.client-switcher { display: flex; align-items: center; gap: 8px; font-size: 12px; opacity: .95; }
.client-switcher select {
  background: rgba(255,255,255,.12); color: #fff;
  border: 1px solid rgba(255,255,255,.3); border-radius: 8px;
  padding: 4px 8px; font-size: 13px;
}
.client-switcher select option { color: var(--ink); }
.avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: #fff; color: var(--brand-deep);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
}

/* ============ Layout ============ */
.shell { display: flex; min-height: calc(100vh - var(--topbar-h)); }
.sidebar {
  width: 218px; flex: 0 0 218px;
  background: var(--card); border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  padding: 14px 10px;
  position: sticky; top: var(--topbar-h); height: calc(100vh - var(--topbar-h));
}
.sidebar-logo {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--brand); color: #fff;
  display: grid; place-items: center;
  font-weight: 700; margin: 2px 6px 16px;
}
.nav { display: flex; flex-direction: column; gap: 2px; }
.nav-item {
  display: flex; align-items: center; gap: 9px;
  width: 100%; text-align: left;
  padding: 7px 10px; border: 0; border-radius: 8px;
  background: none; color: var(--ink-2); cursor: pointer;
  font-size: 13.5px;
}
.nav-item:hover { background: #f4f4f2; color: var(--ink); }
.nav-item.active { background: var(--brand-wash); color: var(--brand); font-weight: 600; }
.nav-ico { width: 16px; text-align: center; opacity: .85; }
.nav-group .chev { margin-left: auto; font-size: 10px; transition: transform .15s; }
.nav-group.open .chev { transform: rotate(180deg); }
.nav-sub { display: none; flex-direction: column; gap: 2px; }
.nav-sub.open { display: flex; }
.nav-item.sub { padding-left: 35px; font-size: 13px; }
.sidebar-foot {
  margin-top: auto; padding: 10px 10px 4px;
  display: flex; flex-direction: column; gap: 6px;
}
.sidebar-foot a { color: var(--ink-3); font-size: 12px; }

.main { flex: 1; min-width: 0; padding: 26px 30px 60px; }
.page { max-width: 1060px; margin: 0 auto; }

/* ============ Page headers ============ */
.page-title { font-size: 20px; font-weight: 700; margin: 0 0 4px; }
.page-sub { color: var(--ink-2); margin: 0 0 20px; }
.welcome { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }

/* ============ Cards ============ */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 18px 20px; margin-bottom: 18px;
}
.card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 4px; }
.card-title { font-size: 15px; font-weight: 700; }
.card-hint { color: var(--ink-3); font-size: 12px; }
.card-link { font-size: 13px; white-space: nowrap; }

/* ============ Stat tiles ============ */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 18px; }
@media (max-width: 980px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
.tile {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 14px 16px; cursor: pointer;
}
.tile:hover { border-color: #cfd4de; }
.tile-label { color: var(--ink-2); font-size: 13px; display: flex; justify-content: space-between; align-items: center; }
.tile-label .chev { color: var(--ink-3); font-size: 11px; }
.tile-value { font-size: 22px; font-weight: 650; margin-top: 6px; }
.tile-delta { font-size: 12px; margin-top: 3px; }
.tile-delta.up { color: var(--good); }
.tile-delta.down { color: var(--bad); }
.tile-delta .vs { color: var(--ink-3); }

/* ============ Charts ============ */
.chart-wrap { position: relative; }
.chart-legend { display: flex; gap: 16px; justify-content: flex-end; margin: 2px 0 6px; flex-wrap: wrap; }
.legend-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--ink-2); }
.legend-swatch { width: 10px; height: 10px; border-radius: 3px; }
.legend-swatch.line { height: 3px; border-radius: 2px; width: 14px; }
.chart-svg { display: block; width: 100%; }
.chart-svg text { font-family: var(--font-body); }

.tooltip {
  position: fixed; z-index: 90; pointer-events: none;
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  box-shadow: 0 6px 24px rgba(23,22,31,.13);
  padding: 9px 12px; font-size: 12.5px; min-width: 150px;
}
.tooltip .tt-title { font-weight: 700; margin-bottom: 5px; }
.tooltip .tt-row { display: flex; align-items: center; gap: 7px; justify-content: space-between; padding: 1.5px 0; }
.tooltip .tt-key { display: flex; align-items: center; gap: 6px; color: var(--ink-2); }
.tooltip .tt-dot { width: 8px; height: 8px; border-radius: 2px; }
.tooltip .tt-val { font-weight: 600; font-variant-numeric: tabular-nums; }

/* ============ Vendor spend list ============ */
.vendor-row { display: grid; grid-template-columns: 170px 1fr 90px; align-items: center; gap: 12px; padding: 7px 0; }
.vendor-name { font-size: 13px; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vendor-bar-track { height: 18px; display: flex; align-items: center; }
.vendor-bar { height: 18px; border-radius: 0 4px 4px 0; background: var(--series-1); min-width: 2px; }
.vendor-amt { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; font-size: 13px; }

/* ============ Tables ============ */
.table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.table th {
  text-align: left; color: var(--ink-3); font-weight: 500; font-size: 12.5px;
  padding: 8px 10px; border-bottom: 1px solid var(--border);
}
.table td { padding: 10px; border-bottom: 1px solid #f3f3f0; vertical-align: middle; }
.table tr:last-child td { border-bottom: 0; }
.table .num { text-align: right; font-variant-numeric: tabular-nums; }
.table .amt-pos { color: var(--good); font-weight: 600; }
.table .amt-neg { color: var(--ink); font-weight: 600; }
.table .sub-note { color: var(--ink-3); font-size: 12px; margin-top: 1px; max-width: 320px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.table .row-click:hover { background: #fafaf8; cursor: default; }
.vendor-cell { display: flex; align-items: center; gap: 10px; }
.vendor-glyph {
  width: 28px; height: 28px; border-radius: 7px; flex: 0 0 28px;
  background: #f4f4f2; color: var(--ink-2);
  display: grid; place-items: center; font-size: 11px; font-weight: 700;
}
.cat-chip {
  display: inline-block; padding: 2px 9px; border-radius: 999px;
  background: #f4f4f2; color: var(--ink-2); font-size: 12px;
}
.cat-select {
  border: 1px solid var(--border); border-radius: 8px; padding: 4px 6px;
  font-size: 12.5px; color: var(--ink-2); background: #fff; max-width: 170px;
}

/* ============ Statement tables ============ */
.stmt-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.stmt-table th, .stmt-table td { padding: 7px 10px; white-space: nowrap; }
.stmt-table th {
  color: var(--ink-3); font-weight: 500; font-size: 12px; text-align: right;
  border-bottom: 1px solid var(--border);
}
.stmt-table th:first-child { text-align: left; }
.stmt-table td { text-align: right; font-variant-numeric: tabular-nums; border-bottom: 1px solid #f3f3f0; }
.stmt-table td:first-child { text-align: left; font-variant-numeric: normal; }
.stmt-table .indent-1 td:first-child { padding-left: 26px; }
.stmt-table .indent-2 td:first-child { padding-left: 42px; }
.stmt-table .section td { font-weight: 700; color: var(--ink); border-bottom: 0; padding-top: 12px; }
.stmt-table .total td { font-weight: 700; border-top: 1px solid var(--baseline); }
.stmt-table .grand td { font-weight: 750; background: #f8f8f6; }
.stmt-table .neg { color: var(--bad); }
.stmt-scroll { overflow-x: auto; }
/* frozen label column while the statement scrolls horizontally */
.stmt-scroll .stmt-table th:first-child,
.stmt-scroll .stmt-table td:first-child {
  position: sticky; left: 0; z-index: 2;
  background: var(--card);
  box-shadow: 4px 0 6px -4px rgba(22, 36, 60, 0.10);
}
.stmt-scroll .stmt-table .grand td:first-child { background: #f8f8f6; }
/* full-width section headers: sticky doesn't work on colspan cells,
   so the inner label sticks instead */
.stmt-scroll .stmt-table td[colspan] { position: static; background: transparent; box-shadow: none; }
.stmt-sec-label { position: sticky; left: 10px; display: inline-block; }

/* ============ Tabs / toolbar / filters ============ */
.tabs { display: flex; gap: 22px; border-bottom: 1px solid var(--border); margin-bottom: 18px; }
.tab {
  background: none; border: 0; cursor: pointer;
  padding: 9px 2px 11px; font-size: 13.5px; color: var(--ink-2);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.tab.active { color: var(--brand); border-bottom-color: var(--brand); font-weight: 600; }

.toolbar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.toolbar .spacer { flex: 1; }
.select, .input {
  border: 1px solid var(--border); border-radius: 9px;
  padding: 7px 10px; font-size: 13px; background: #fff; color: var(--ink);
}
.input::placeholder { color: var(--ink-3); }
.btn {
  border: 1px solid var(--border); background: #fff; color: var(--ink);
  border-radius: 9px; padding: 7px 14px; font-size: 13px; cursor: pointer;
}
.btn:hover { border-color: #c9c8c3; }
.btn.primary { background: var(--brand); border-color: var(--brand); color: #fff; font-weight: 600; }
.btn.primary:hover { background: #24385c; }
.filters { display: grid; grid-template-columns: repeat(5, minmax(120px, 1fr)); gap: 10px; margin-bottom: 16px; }
.filter label { display: block; color: var(--ink-3); font-size: 12px; margin-bottom: 4px; }
.filter select, .filter input { width: 100%; }

/* ============ Accounts page ============ */
.accounts-grid { display: grid; grid-template-columns: 250px 1fr; gap: 16px; align-items: start; }
@media (max-width: 900px) { .accounts-grid { grid-template-columns: 1fr; } }
.acct-row { display: flex; justify-content: space-between; gap: 8px; padding: 9px 0; border-bottom: 1px solid #f3f3f0; }
.acct-row:last-child { border-bottom: 0; }
.acct-name { font-size: 13px; font-weight: 600; }
.acct-meta { color: var(--ink-3); font-size: 12px; }
.acct-bal { font-variant-numeric: tabular-nums; font-weight: 600; font-size: 13px; text-align: right; }
.total-row { display: flex; justify-content: space-between; padding: 8px 0 12px; border-bottom: 2px solid var(--ink); margin-bottom: 6px; }
.hero-figure { font-size: 30px; font-weight: 700; margin: 2px 0 10px; }
.kpi-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 6px; }
.kpi .k-label { color: var(--ink-2); font-size: 13px; }
.kpi .k-value { font-size: 24px; font-weight: 700; margin-top: 3px; }

/* ============ Settings ============ */
.settings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 900px) { .settings-grid { grid-template-columns: 1fr; } }
.field { margin-bottom: 12px; }
.field label { display: block; color: var(--ink-3); font-size: 12px; margin-bottom: 4px; }
.field input { width: 100%; }
.muted { color: var(--ink-3); font-size: 12.5px; }
.empty { color: var(--ink-3); text-align: center; padding: 26px 0; }

/* ============ Upload modal ============ */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(23, 22, 31, 0.45);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: #fff; border-radius: 14px; width: 480px; max-width: 100%;
  max-height: 92vh; overflow-y: auto;
  padding: 18px 20px; box-shadow: 0 18px 60px rgba(23,22,31,.3);
}
.modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.modal-x {
  border: 0; background: none; cursor: pointer; color: var(--ink-3);
  font-size: 15px; padding: 4px 6px; border-radius: 6px;
}
.modal-x:hover { background: #f4f4f2; color: var(--ink); }
.modal .select, .modal .input { width: 100%; }
.modal-foot { display: flex; justify-content: flex-end; gap: 10px; margin-top: 16px; }

.dropzone {
  border: 1.5px dashed #c9c8c3; border-radius: 12px;
  text-align: center; padding: 22px 14px 18px; margin-bottom: 12px;
  color: var(--ink-2); font-size: 13.5px;
  transition: border-color .12s, background .12s;
}
.dropzone.drag { border-color: var(--brand); background: var(--brand-wash); }
.dropzone.error { border-color: var(--bad); }
.dz-icon { font-size: 20px; color: var(--brand); margin-bottom: 6px; }
.linklike { border: 0; background: none; color: var(--brand); cursor: pointer; padding: 0; font-size: inherit; text-decoration: underline; }
.dz-files { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.dz-file {
  display: flex; align-items: center; gap: 8px;
  background: #f7f7f5; border: 1px solid var(--border); border-radius: 9px;
  padding: 6px 10px; font-size: 12.5px;
}
.dz-file .name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dz-file .size { color: var(--ink-3); }
.dz-file .rm { border: 0; background: none; color: var(--ink-3); cursor: pointer; padding: 2px 5px; border-radius: 5px; }
.dz-file .rm:hover { background: #eeede9; color: var(--bad); }

/* ============ Documents ============ */
.quick-uploads { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.quick-up {
  border: 1px solid var(--border); background: #fff; border-radius: 999px;
  padding: 6px 13px; font-size: 12.5px; color: var(--ink-2); cursor: pointer;
}
.quick-up:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-wash); }
.check-row { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 13px; border-bottom: 1px solid #f3f3f0; }
.check-row:last-child { border-bottom: 0; }
.check-mark {
  width: 20px; height: 20px; border-radius: 50%; flex: 0 0 20px;
  display: grid; place-items: center; font-size: 11px; font-weight: 700;
}
.check-mark.done { background: #d7f5d9; color: var(--good); }
.check-mark.todo { background: #f4f4f2; color: var(--ink-3); }
.check-row .lbl { flex: 1; }
.check-row .lbl .muted { display: block; }
.btn.small { padding: 4px 11px; font-size: 12px; border-radius: 8px; }
.doc-type-chip { display: inline-block; padding: 2px 9px; border-radius: 999px; background: var(--brand-wash); color: var(--brand); font-size: 12px; white-space: nowrap; }
.st-chip { display: inline-block; padding: 2px 10px; border-radius: 999px; font-size: 12px; cursor: pointer; white-space: nowrap; }
.st-received { background: #f4f4f2; color: var(--ink-2); }
.st-review { background: #ede7dc; color: #6d5f3a; }
.st-processed { background: #d7f5d9; color: var(--good); }
.icon-btn { border: 0; background: none; cursor: pointer; font-size: 14px; color: var(--ink-2); padding: 4px 6px; border-radius: 6px; }
.icon-btn:hover { background: #f4f4f2; color: var(--ink); }
.icon-btn.danger:hover { color: var(--bad); }

/* ============ Admin ============ */
.admin-topbar { background: linear-gradient(115deg, #0a1425 0%, #0d1930 45%, #1f3b68 100%); }
.topbar-btn {
  background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3);
  color: #fff; text-decoration: none;
}
.topbar-btn:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.4); }
.form-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.form-grid.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 900px) { .form-grid, .form-grid.two { grid-template-columns: 1fr; } }
.form-grid .field { margin-bottom: 0; }
.acct-edit-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 150px auto;
  gap: 8px; align-items: center; margin-bottom: 8px;
}
.acct-head { margin-bottom: 4px; }
.acct-head span { font-size: 12px; color: var(--ink-3); }
.scroll-box { max-height: 420px; overflow-y: auto; }
.sel-bar {
  display: flex; align-items: center; gap: 14px;
  background: #f4f4f2; border-radius: 10px;
  padding: 8px 14px; margin-bottom: 10px;
}
input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--brand); cursor: pointer; }
.cat-row { grid-template-columns: 22px 2fr 1fr auto; }
.macct-row {
  display: grid; grid-template-columns: 22px 120px 2fr 1.2fr 170px 32px;
  gap: 8px; align-items: center; margin-bottom: 8px;
}
.macct-head { margin-bottom: 4px; }
.macct-head span { font-size: 12px; color: var(--ink-3); }
.macct-amt {
  display: block; text-align: right;
  font-variant-numeric: tabular-nums; font-weight: 600; font-size: 13px;
}
.macct-row.drag-over { outline: 2px dashed var(--brand); outline-offset: 2px; border-radius: 8px; }
.drag-handle {
  cursor: grab; color: var(--ink-3); text-align: center;
  user-select: none; font-size: 15px; line-height: 1;
}
.drag-handle:active { cursor: grabbing; }
.cat-row.drag-over { outline: 2px dashed var(--brand); outline-offset: 2px; border-radius: 8px; }
.btn.danger { color: var(--bad); border-color: #e8c4c4; }
.btn.danger:hover { background: #f4cccc; border-color: var(--bad); }

/* ============ Cash / non-cash toggle & profile ============ */
.seg-toggle {
  display: inline-flex; gap: 4px;
  background: #f4f4f2; border-radius: 10px; padding: 4px;
  margin-bottom: 10px;
}
.seg-btn {
  border: 0; border-radius: 8px; padding: 7px 16px; cursor: pointer;
  background: none; color: var(--ink-2); font-size: 13px; font-weight: 600;
}
.seg-btn.active { background: var(--brand); color: var(--accent); }
.avatar { overflow: hidden; }
.avatar img, .avatar-preview img { width: 100%; height: 100%; object-fit: cover; }
.avatar-preview {
  width: 64px; height: 64px; border-radius: 50%; flex: 0 0 64px;
  background: var(--brand-wash); color: var(--brand);
  display: grid; place-items: center; font-weight: 700; font-size: 20px;
  overflow: hidden;
}
.profile-row { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.cp-row {
  display: grid; grid-template-columns: 110px 1fr auto;
  gap: 8px; align-items: center; margin-bottom: 8px;
}

/* ============ Receivables & Payables ============ */
.arap-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
@media (max-width: 800px) { .arap-tiles { grid-template-columns: 1fr; } }
.wa-cell { display: flex; align-items: center; gap: 6px; }
.wa-cell .input { width: 150px; padding: 5px 8px; font-size: 12.5px; }
.wa-btn {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--good-bg); color: var(--good);
  border: 0; border-radius: 999px; padding: 5px 12px;
  font-size: 12.5px; font-weight: 600; cursor: pointer;
  text-decoration: none; white-space: nowrap;
}
.wa-btn:hover { filter: brightness(0.96); }
.due-chip { font-size: 12px; color: var(--ink-3); white-space: nowrap; }
.due-chip.overdue { color: var(--bad); font-weight: 600; }
.paid-chip { background: var(--good-bg); color: var(--good); }
.open-chip { background: var(--accent); color: #6d5f3a; }

.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff; border-radius: 10px;
  padding: 10px 18px; font-size: 13px; z-index: 100;
  box-shadow: 0 8px 30px rgba(23,22,31,.25);
  animation: toast-in .18s ease-out;
}
@keyframes toast-in { from { opacity: 0; transform: translate(-50%, 8px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* ---- searchable picker (inventory items, fixed assets) ---- */
.combo-wrap { position: relative; }
.combo-list {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 30;
  background: var(--card); border: 1px solid var(--border); border-radius: 10px;
  margin-top: 4px; max-height: 250px; overflow-y: auto;
  box-shadow: 0 14px 32px rgba(22, 36, 60, .16);
}
.combo-list[hidden] { display: none; }
.combo-item { padding: 8px 11px; cursor: pointer; font-size: 13.5px; }
.combo-item:hover { background: var(--brand-wash); }
.combo-item.none { color: var(--ink-3); cursor: default; }
.combo-item.none:hover { background: transparent; }

/* ---- queued rows waiting to be posted ---- */
.queue-bar {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border);
}
