/* Energize Boston — admin dashboard. Brand green matches the customer app's
   design tokens (#4D8307) so the two feel like one product. */

:root {
  --brand: #4D8307;
  --brand-dark: #3E6B05;
  --brand-soft: #F1F7EC;
  --brand-softer: #F8FBF5;

  --ink: #1A191B;
  --ink-soft: #2E2E2E;
  --slate: #4A596A;
  --muted: #6B7887;
  --subtle: #7C8896;

  --surface: #FFFFFF;
  --surface-alt: #F5F7F3;
  --canvas: #F7F8F6;
  --line: #E4E9E0;
  --line-soft: #EEF1EC;

  --danger: #C4553A;
  --danger-soft: #FCF0ED;
  --warning: #C68A1B;
  --warning-soft: #FDF4E3;
  --info: #3E6B8C;
  --info-soft: #EDF3F8;
  --ok: #4D8307;
  --ok-soft: #F1F7EC;

  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(26,25,27,.06), 0 4px 14px rgba(26,25,27,.06);
  --shadow-lg: 0 8px 30px rgba(26,25,27,.14);
  --sidebar: 224px;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --brand: #8FC44A; --brand-dark: #A5D563; --brand-soft: #1F2A17; --brand-softer: #1A2214;
    --ink: #F2F4F0; --ink-soft: #E2E6DE; --slate: #B4BFC9; --muted: #96A1AC; --subtle: #7F8A95;
    --surface: #1C1F1B; --surface-alt: #23271F; --canvas: #151814; --line: #33382F; --line-soft: #2A2F27;
    --danger: #E2795C; --danger-soft: #33211C; --warning: #D9A93F; --warning-soft: #2E2616;
    --info: #7FB0D2; --info-soft: #1B242B; --ok: #8FC44A; --ok-soft: #1F2A17;
    --shadow: 0 1px 2px rgba(0,0,0,.4), 0 4px 14px rgba(0,0,0,.3);
    --shadow-lg: 0 8px 30px rgba(0,0,0,.5);
  }
}

:root[data-theme="dark"] {
    --brand: #8FC44A; --brand-dark: #A5D563; --brand-soft: #1F2A17; --brand-softer: #1A2214;
    --ink: #F2F4F0; --ink-soft: #E2E6DE; --slate: #B4BFC9; --muted: #96A1AC; --subtle: #7F8A95;
    --surface: #1C1F1B; --surface-alt: #23271F; --canvas: #151814; --line: #33382F; --line-soft: #2A2F27;
    --danger: #E2795C; --danger-soft: #33211C; --warning: #D9A93F; --warning-soft: #2E2616;
    --info: #7FB0D2; --info-soft: #1B242B; --ok: #8FC44A; --ok-soft: #1F2A17;
    --shadow: 0 1px 2px rgba(0,0,0,.4), 0 4px 14px rgba(0,0,0,.3);
    --shadow-lg: 0 8px 30px rgba(0,0,0,.5);
  }

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font: 14px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { margin: 0; font-weight: 650; letter-spacing: -.01em; }
a { color: var(--brand); }
button { font: inherit; }

/* ------------------------------------------------------------- layout */

.app { display: flex; min-height: 100vh; }

.sidebar {
  width: var(--sidebar);
  flex: 0 0 var(--sidebar);
  background: var(--surface);
  border-right: 1px solid var(--line);
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: sticky;
  top: 0;
  height: 100vh;
}

.brand {
  display: flex; align-items: center; gap: 9px;
  padding: 4px 10px 18px;
}
.brand-mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--brand); color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-size: 15px; flex: none;
}
.brand-name { font-weight: 650; letter-spacing: -.01em; }
.brand-sub { font-size: 11px; color: var(--subtle); margin-top: -2px; }

.nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 11px; border-radius: var(--radius-sm);
  color: var(--slate); text-decoration: none;
  border: 0; background: none; width: 100%; text-align: left;
  cursor: pointer;
}
.nav-item:hover { background: var(--surface-alt); color: var(--ink); }
.nav-item.is-active { background: var(--brand-soft); color: var(--brand-dark); font-weight: 600; }
.nav-item .count {
  margin-left: auto; font-size: 11px; font-weight: 700;
  background: var(--danger); color: #fff;
  border-radius: 999px; padding: 1px 7px; min-width: 20px; text-align: center;
}
.nav-spacer { flex: 1; }
.nav-foot { padding: 10px 11px; font-size: 11.5px; color: var(--subtle); border-top: 1px solid var(--line-soft); }

.main { flex: 1; min-width: 0; display: flex; flex-direction: column; }

.topbar {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 24px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 20;
}
.topbar h1 { font-size: 19px; }
.topbar .spacer { flex: 1; }

.content { padding: 22px 24px 40px; }

/* ------------------------------------------------------------ controls */

.input, .select {
  appearance: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 8px 11px;
  color: var(--ink);
  min-height: 38px;
}
.input:focus, .select:focus { outline: 2px solid var(--brand); outline-offset: -1px; }
.input::placeholder { color: var(--subtle); }

.search { position: relative; display: flex; align-items: center; }
.search .input { padding-left: 32px; width: 280px; max-width: 100%; }
.search svg { position: absolute; left: 10px; color: var(--subtle); pointer-events: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  border: 1px solid var(--line);
  background: var(--surface); color: var(--ink);
  border-radius: var(--radius-sm);
  padding: 8px 14px; min-height: 38px;
  font-weight: 550; cursor: pointer;
}
.btn:hover:not(:disabled) { background: var(--surface-alt); }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-primary { background: var(--brand); border-color: var(--brand); color: #fff; }
.btn-primary:hover:not(:disabled) { background: var(--brand-dark); border-color: var(--brand-dark); }
.btn-danger { background: var(--danger); border-color: var(--danger); color: #fff; }
.btn-danger:hover:not(:disabled) { filter: brightness(.94); }
.btn-ghost { border-color: transparent; background: none; color: var(--slate); }
.btn-ghost:hover:not(:disabled) { background: var(--surface-alt); }
.btn-sm { padding: 5px 10px; min-height: 30px; font-size: 13px; }

/* --------------------------------------------------------------- bits */

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card-head {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; border-bottom: 1px solid var(--line-soft);
}
.card-head h2 { font-size: 15px; }
.card-head .spacer { flex: 1; }
.card-body { padding: 16px; }

.pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 650; letter-spacing: .01em;
  padding: 3px 9px; border-radius: 999px;
  background: var(--surface-alt); color: var(--slate);
  white-space: nowrap;
}
.pill-new     { background: var(--danger-soft);  color: var(--danger); }
.pill-prep    { background: var(--warning-soft); color: var(--warning); }
.pill-ready   { background: var(--info-soft);    color: var(--info); }
.pill-done    { background: var(--ok-soft);      color: var(--ok); }
.pill-void    { background: var(--surface-alt);  color: var(--subtle); }
.pill-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex: none; }

.muted { color: var(--muted); }
.subtle { color: var(--subtle); }
.small { font-size: 12.5px; }
.tnum { font-variant-numeric: tabular-nums; }
.right { text-align: right; }
.row { display: flex; align-items: center; gap: 10px; }
.wrap { flex-wrap: wrap; }

/* -------------------------------------------------------------- board */

.board { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 22px; }
.board-col { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.board-col-head {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 14px; border-bottom: 1px solid var(--line-soft);
  font-weight: 650; font-size: 13px;
}
.board-col-head .n { margin-left: auto; color: var(--subtle); font-weight: 600; }
.board-col.is-new .board-col-head { background: var(--danger-soft); color: var(--danger); }
.board-col.is-prep .board-col-head { background: var(--warning-soft); color: var(--warning); }
.board-col.is-ready .board-col-head { background: var(--info-soft); color: var(--info); }
.board-list { padding: 10px; display: flex; flex-direction: column; gap: 8px; min-height: 84px; }

.ticket {
  text-align: left; width: 100%; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 11px 12px;
  display: flex; flex-direction: column; gap: 5px;
}
.ticket:hover { border-color: var(--brand); box-shadow: var(--shadow); }
.ticket-top { display: flex; align-items: baseline; gap: 8px; }
.ticket-id { font-weight: 700; letter-spacing: -.01em; }
.ticket-amt { margin-left: auto; font-weight: 650; }
.ticket-name { font-size: 13px; color: var(--slate); }
.ticket-meta { font-size: 11.5px; color: var(--subtle); display: flex; gap: 8px; flex-wrap: wrap; }
.board-empty { padding: 16px 6px; text-align: center; color: var(--subtle); font-size: 12.5px; }

/* -------------------------------------------------------------- table */

.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th {
  text-align: left; font-size: 11.5px; text-transform: uppercase;
  letter-spacing: .04em; color: var(--subtle); font-weight: 650;
  padding: 10px 14px; border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
td { padding: 11px 14px; border-bottom: 1px solid var(--line-soft); vertical-align: middle; }
tbody tr { cursor: pointer; }
tbody tr:hover { background: var(--brand-softer); }
tbody tr:last-child td { border-bottom: 0; }

.cust { display: flex; flex-direction: column; }
.cust b { font-weight: 600; }

.pager { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-top: 1px solid var(--line-soft); }

/* ------------------------------------------------------------- detail */

.detail { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 18px; align-items: start; }

.sum-row { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; }
.sum-row.total {
  border-top: 1px solid var(--line);
  margin-top: 6px; padding-top: 11px;
  font-weight: 700; font-size: 15px;
}
.sum-row.net { border-top: 1px dashed var(--line); margin-top: 6px; padding-top: 11px; font-weight: 650; }
.sum-row .neg { color: var(--danger); }

.line { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
.line:last-child { border-bottom: 0; }
.line-qty {
  flex: none; min-width: 28px; height: 28px; padding: 0 6px;
  border-radius: var(--radius-sm); background: var(--brand-soft); color: var(--brand-dark);
  display: grid; place-items: center; font-weight: 700; font-size: 13px;
}
.line-body { flex: 1; min-width: 0; }
.line-name { font-weight: 600; }
.line-opt { font-size: 12.5px; color: var(--muted); }
.line-note {
  font-size: 12.5px; color: var(--warning);
  background: var(--warning-soft); border-radius: 6px;
  padding: 3px 8px; margin-top: 5px; display: inline-block;
}

.kv { display: grid; grid-template-columns: 96px 1fr; gap: 4px 10px; font-size: 13px; }
.kv dt { color: var(--subtle); }
.kv dd { margin: 0; }

.banner {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 11px 13px; border-radius: var(--radius-sm);
  font-size: 13px; margin-bottom: 14px;
}
.banner-danger { background: var(--danger-soft); color: var(--danger); }
.banner-warn { background: var(--warning-soft); color: var(--warning); }
.banner-ok { background: var(--ok-soft); color: var(--ok); }
.banner-info { background: var(--info-soft); color: var(--info); }

/* -------------------------------------------------------------- modal */

.overlay {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(26,25,27,.42);
  display: grid; place-items: center; padding: 20px;
}
.modal {
  background: var(--surface); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); width: 100%; max-width: 420px;
  border: 1px solid var(--line);
}
.modal h2 { font-size: 16px; }

/* ------------------------------------------------------------- states */

.skeleton {
  background: linear-gradient(90deg, var(--surface-alt) 25%, var(--line-soft) 37%, var(--surface-alt) 63%);
  background-size: 400% 100%;
  animation: shimmer 1.3s ease infinite;
  border-radius: 6px; height: 12px;
}
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }
@media (prefers-reduced-motion: reduce) { .skeleton { animation: none; } }

.empty { padding: 44px 20px; text-align: center; color: var(--muted); }
.empty h3 { font-size: 15px; margin-bottom: 4px; color: var(--ink); }

.demo-flag {
  background: var(--warning-soft); color: var(--warning);
  font-size: 12px; font-weight: 600;
  padding: 6px 24px; text-align: center;
  border-bottom: 1px solid var(--line);
}

/* ------------------------------------------------------------ responsive */

@media (max-width: 980px) {
  .detail { grid-template-columns: 1fr; }
  .board { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .app { flex-direction: column; }
  .sidebar {
    width: auto; flex: none; height: auto; position: static;
    flex-direction: row; overflow-x: auto; padding: 10px;
    border-right: 0; border-bottom: 1px solid var(--line);
  }
  .brand, .nav-spacer, .nav-foot { display: none; }
  .nav-item { width: auto; white-space: nowrap; }
  .content, .topbar { padding-left: 16px; padding-right: 16px; }
  .search .input { width: 100%; }
  .topbar { flex-wrap: wrap; }
}

/* --------------------------------------------------------------- menu */

.toolbar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.toolbar .spacer { flex: 1; }
.segs { display: inline-flex; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 3px; gap: 2px; }
.seg {
  border: 0; background: none; color: var(--slate); cursor: pointer;
  padding: 6px 11px; border-radius: 6px; font-size: 13px; font-weight: 550; white-space: nowrap;
}
.seg:hover { color: var(--ink); }
.seg.is-active { background: var(--brand-soft); color: var(--brand-dark); }
.seg:focus-visible { outline: 2px solid var(--brand); outline-offset: -1px; }

.menu-groups { display: flex; flex-direction: column; gap: 16px; }
.menu-list { padding: 4px 16px; }
.menu-row {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid var(--line-soft);
}
.menu-row:last-child { border-bottom: 0; }
.menu-row.is-off .menu-name, .menu-row.is-off .menu-price { color: var(--muted); }
.menu-row.is-off .thumb { opacity: .55; }
.thumb {
  width: 48px; height: 48px; border-radius: 10px; flex: none;
  object-fit: cover; background: var(--surface-alt);
}
.thumb-blank {
  display: grid; place-items: center;
  color: var(--brand-dark); background: var(--brand-soft);
  font-weight: 700; font-size: 13px; letter-spacing: .02em;
}
.menu-body { flex: 1; min-width: 0; }
.menu-name { font-weight: 600; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.menu-sub {
  font-size: 12.5px; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.menu-meta { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-top: 4px; font-size: 12px; }
.chip {
  font-size: 11.5px; font-weight: 600; color: var(--slate);
  background: var(--surface-alt); border-radius: 999px; padding: 1px 8px;
}
.menu-price { min-width: 64px; text-align: right; font-weight: 600; }

.switch {
  position: relative; width: 42px; height: 24px; flex: none;
  border-radius: 999px; border: 0; padding: 0; cursor: pointer;
  background: var(--line); transition: background .15s ease;
}
.switch.is-on { background: var(--brand); }
.switch.is-busy { opacity: .55; cursor: progress; }
.switch:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.switch-knob {
  position: absolute; top: 3px; left: 3px; width: 18px; height: 18px;
  border-radius: 50%; background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,.25);
  transition: transform .15s ease;
}
.switch.is-on .switch-knob { transform: translateX(18px); }
@media (prefers-reduced-motion: reduce) { .switch, .switch-knob { transition: none; } }
@media (max-width: 760px) {
  .menu-sub { white-space: normal; }
  .menu-price { min-width: 0; }
}

/* -------------------------------------------------------------- login */
.login-wrap { display: grid; place-items: center; min-height: 60vh; }
.login-card { width: 100%; max-width: 380px; padding: 26px 26px 22px; }
.login-form { display: flex; flex-direction: column; gap: 6px; }
.login-form .input { margin-bottom: 8px; }
.login-form .btn { margin-top: 6px; }

/* ------------------------------------------------------------ coupons */
.modal-wide { max-width: 720px; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
.field .input, .field .select { width: 100%; }
textarea.input { font: inherit; resize: vertical; min-height: 76px; line-height: 1.45; }
.check { display: inline-flex; align-items: center; gap: 8px; padding: 6px 10px 6px 4px; cursor: pointer; }
.check input { width: 16px; height: 16px; accent-color: var(--brand); margin: 0; }
.check-block { display: flex; align-items: flex-start; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 9px 12px; margin-bottom: 6px; }
.check-block:has(input:checked) { border-color: var(--brand); background: var(--brand-softer); }
.check-block input { margin-top: 3px; }

.notif {
  background: var(--surface-alt); border: 1px solid var(--line); border-radius: 18px;
  padding: 12px 14px; box-shadow: var(--shadow);
}
.notif-app { display: flex; align-items: center; gap: 7px; font-size: 11px; letter-spacing: .04em; color: var(--subtle); margin-bottom: 6px; }
.notif-icon { width: 18px; height: 18px; border-radius: 5px; background: var(--brand); color: #fff; display: grid; place-items: center; font-size: 11px; font-weight: 700; letter-spacing: 0; }
.notif-title { font-weight: 650; font-size: 14px; }
.notif-body { font-size: 13.5px; color: var(--ink-soft); line-height: 1.4; }
@media (max-width: 760px) { .grid2 { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------- customers */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat { background: var(--surface-alt); border-radius: var(--radius-sm); padding: 12px 14px; }
.stat-v { font-size: 20px; font-weight: 700; letter-spacing: -.02em; }
.stat-l { font-size: 12px; color: var(--subtle); margin-top: 2px; }
.pick { text-align: left; width: 100%; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 10px 12px; cursor: pointer; }
.pick:hover { border-color: var(--brand); background: var(--brand-softer); }

/* ------------------------------------------------------------ reports */
.kpis { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin: 4px 0 18px; }
.kpi { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; box-shadow: var(--shadow); }
.kpi-v { font-size: 22px; font-weight: 700; letter-spacing: -.02em; }
.kpi-l { font-size: 12.5px; color: var(--slate); margin-top: 2px; }
.kpi-h { font-size: 11.5px; color: var(--subtle); margin-top: 2px; }
.chart { width: 100%; height: auto; display: block; }
.chart .grid { stroke: var(--line-soft); stroke-width: 1; }
.chart .axis { stroke: var(--line); stroke-width: 1; }
.chart .tick { font-size: 11px; fill: var(--subtle); }
.chart .bar-label { font-size: 11.5px; font-weight: 600; fill: var(--ink); }
.chart .hit:hover ~ .bar { opacity: 1; }
.legend { display: flex; gap: 14px; font-size: 12.5px; color: var(--slate); }
.legend-item { display: inline-flex; align-items: center; gap: 6px; }
.swatch { width: 10px; height: 10px; border-radius: 3px; display: inline-block; flex: none; }
.chart-tip {
  position: fixed; z-index: 90; pointer-events: none; min-width: 190px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); padding: 9px 11px; font-size: 13px;
}
.tip-row { display: flex; align-items: center; gap: 7px; padding: 2px 0; }
.tip-total { border-top: 1px solid var(--line-soft); margin-top: 4px; padding-top: 5px; font-weight: 600; }

/* -------------------------------------------------------------- hours */
.hours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); gap: 16px; }
.day-row { display: flex; align-items: center; gap: 14px; padding: 9px 0; border-bottom: 1px solid var(--line-soft); }
.day-row:last-of-type { border-bottom: 0; }
.day-name { width: 92px; font-weight: 600; }
.day-row.is-closed .day-name { color: var(--muted); }
.day-times { display: flex; align-items: center; gap: 8px; flex: 1; }
.select.time { min-height: 34px; padding: 5px 9px; }
@media (max-width: 760px) { .hours-grid { grid-template-columns: 1fr; } .day-row { flex-wrap: wrap; } }
.menu-row:focus-visible { outline: 2px solid var(--brand); outline-offset: -2px; border-radius: 8px; }
.menu-row { cursor: pointer; }
.menu-row .switch { cursor: pointer; }
.photo-wrap { flex: none; }
.photo-preview { width: 120px; height: 80px; border-radius: 10px; object-fit: cover; background: var(--surface-alt); display: grid; place-items: center; font-weight: 700; color: var(--brand-dark); }
.rows { display: flex; flex-direction: column; gap: 6px; margin-bottom: 8px; }
.row-edit .input { flex: 1; min-width: 0; }
.row-edit .input.narrow { flex: 0 0 110px; }

/* Tall dialogs (the item editor with sizes and add-ons) scroll inside the
   dialog; the header and footer buttons stay reachable. */
.modal { display: flex; flex-direction: column; max-height: calc(100vh - 40px); }
.modal > .card-head { flex: none; }
.modal > .card-body { overflow-y: auto; }
.field > .btn { align-self: flex-start; }

/* menu setup (categories & add-on groups) */
.setup-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.setup-row:last-child { border-bottom: 0; }
.setup-order { display: flex; flex-direction: column; gap: 2px; flex: none; }
.setup-order .btn { padding: 0 8px; min-height: 22px; line-height: 22px; }
.setup-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.setup-body strong { font-size: 14px; }
