/* ============ Sztab CRM — panel operacyjny ============ */
:root {
  /* jasny motyw miętowy — biel na powierzchniach, mięta jako akcent */
  --bg: #F1F8F5;
  --surface: #FFFFFF;
  --surface-2: #F5FAF8;
  --surface-3: #E8F3EE;
  --border: #D2E6DC;
  --border-soft: #E6F1EC;
  --ink: #15241E;
  --ink-2: #3C544A;
  --muted: #6E857A;
  --brass: #0E9E77;          /* mięta — akcent wiodący */
  --brass-dim: #0B8362;
  --blue: #2B6FB5;
  --green: #128A5E;
  --red: #B0453D;
  --lamp-ok: #0E9E77;
  --lamp-warn: #C2762B;
  --lamp-err: #B0453D;
  --font-display: 'Archivo', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --r: 10px;
  --shadow: 0 6px 20px rgba(21, 61, 48, .10);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -.01em; }
a { color: var(--brass); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: var(--font-body); cursor: pointer; }
input, select, textarea { font-family: var(--font-body); font-size: 14px; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.muted { color: var(--muted); }
.hidden { display: none !important; }

/* ---------- eyebrow / etykiety sekcji ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}

/* ---------- logowanie ---------- */
#login-screen {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(1000px 500px at 70% -10%, rgba(14,158,119,.07), transparent 60%),
    var(--bg);
  padding: 24px;
}
.login-box { width: 100%; max-width: 380px; }
.login-brand { display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px; }
.login-brand .mark {
  width: 14px; height: 14px; background: var(--brass);
  align-self: center; flex: none;
}
.login-brand h1 {
  font-size: 34px; font-weight: 700; letter-spacing: .02em;
}
.login-logo { height: 40px; width: auto; display: block; margin-bottom: 6px; }
.login-sub { color: var(--muted); margin-bottom: 28px; font-size: 14px; }
.login-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 24px; box-shadow: var(--shadow);
}
.login-card label { display: block; font-size: 13px; color: var(--ink-2); margin: 14px 0 5px; }
.login-card label:first-child { margin-top: 0; }
.login-error { color: var(--red); font-size: 13px; margin-top: 12px; min-height: 18px; }
.login-foot { margin-top: 18px; color: var(--muted); font-size: 12.5px; text-align: center; }

/* ---------- pola formularzy ---------- */
.input, textarea.input, select.input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--ink);
  border-radius: 8px;
  padding: 9px 12px;
  transition: border-color .15s;
}
.input:focus { border-color: var(--brass); outline: none; }
textarea.input { resize: vertical; min-height: 90px; line-height: 1.5; }
select.input { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 18px) 55%, calc(100% - 13px) 55%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 32px; }
.field { margin-bottom: 14px; }
.field > label { display: block; font-size: 13px; color: var(--ink-2); margin-bottom: 5px; }
.field .hint { font-size: 12px; color: var(--muted); margin-top: 4px; }
.form-row { display: flex; gap: 12px; }
.form-row > .field { flex: 1; }

/* ---------- przyciski ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--surface-2); color: var(--ink);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 8px 14px; font-size: 13.5px; font-weight: 500;
  transition: background .15s, border-color .15s;
}
.btn:hover { background: var(--surface-3); border-color: var(--muted); }
.btn.primary { background: var(--brass-dim); border-color: var(--brass-dim); color: #FFFFFF; font-weight: 600; }
.btn.primary:hover { background: var(--brass); border-color: var(--brass); }
.btn.danger { color: var(--red); border-color: #E7C5C1; }
.btn.danger:hover { background: #FBEDEB; border-color: var(--red); }
.btn.ghost { background: transparent; border-color: transparent; color: var(--muted); }
.btn.ghost:hover { color: var(--ink); background: var(--surface-2); }
.btn.sm { padding: 4px 10px; font-size: 12.5px; border-radius: 6px; }
.btn.full { width: 100%; justify-content: center; padding: 11px; font-size: 14.5px; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ---------- powłoka aplikacji ---------- */
#app { display: flex; min-height: 100vh; }
.sidebar {
  width: 216px; flex: none;
  background: var(--surface);
  border-right: 1px solid var(--border-soft);
  display: flex; flex-direction: column;
  position: sticky; top: 0; height: 100vh;
}
.side-brand {
  display: flex; align-items: center; gap: 9px;
  padding: 20px 18px 16px;
}
.side-brand .mark { width: 11px; height: 11px; background: var(--brass); flex: none; }
.side-brand b { font-family: var(--font-display); font-size: 19px; font-weight: 700; letter-spacing: .03em; }
.side-logo { height: 30px; width: auto; }
.side-nav { flex: 1; padding: 6px 10px; overflow-y: auto; }
.side-nav .group { margin: 14px 8px 6px; }
.nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; margin-bottom: 2px;
  border-radius: 7px; color: var(--ink-2);
  font-size: 13.5px; font-weight: 500;
  border-left: 2px solid transparent;
}
.nav-item svg { width: 17px; height: 17px; flex: none; stroke: currentColor; opacity: .8; }
.nav-item:hover { background: var(--surface-2); color: var(--ink); text-decoration: none; }
.nav-item.active { background: var(--surface-2); color: var(--brass); border-left-color: var(--brass); }
.nav-badge {
  margin-left: auto; background: var(--brass-dim); color: #FFFFFF;
  font-size: 11px; font-weight: 700; padding: 0 6px; border-radius: 999px;
  min-width: 18px; text-align: center;
}
.side-nav .group { color: var(--muted); padding-top: 4px; }
.side-user {
  padding: 14px 18px; border-top: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  font-size: 13px; color: var(--muted);
}
.main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px 0; gap: 16px;
}
.topbar h2 { font-size: 22px; font-weight: 700; }
.topbar .actions { display: flex; gap: 8px; flex-wrap: wrap; }
.content { padding: 20px 28px 48px; }

/* ---------- karty ---------- */
.card {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--r); padding: 18px 20px; margin-bottom: 16px;
}
.card h3 { font-size: 15px; font-weight: 600; margin-bottom: 12px; }
.card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.card-head h3 { margin-bottom: 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* ---------- odprawa (sygnatura pulpitu) ---------- */
.brief {
  border-left: 3px solid var(--brass);
  background: linear-gradient(90deg, rgba(14,158,119,.08), transparent 55%), var(--surface);
  border-radius: var(--r); border-top: 1px solid var(--border-soft);
  border-right: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft);
  padding: 18px 22px; margin-bottom: 18px;
}
.brief .eyebrow { color: var(--brass); margin-bottom: 8px; }
.brief ul { list-style: none; }
.brief li { padding: 4px 0; font-size: 15px; }
.brief li::before { content: '—'; color: var(--brass); margin-right: 10px; }

/* ---------- baner apki Mira ---------- */
.mira-baner {
  display: flex; align-items: center; gap: 16px;
  background: linear-gradient(90deg, rgba(14,158,119,.09), var(--surface) 60%);
  border: 1px solid var(--border-soft); border-left: 3px solid var(--brass);
  border-radius: var(--r); padding: 14px 18px; margin-bottom: 16px;
  color: inherit; text-decoration: none;
}
.mira-baner:hover { text-decoration: none; border-color: var(--brass); }
.mira-ikona { font-size: 30px; flex: none; }
.mira-tresc { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.mira-tresc b { font-family: var(--font-display); font-size: 15px; }
.mira-tresc span { color: var(--muted); font-size: 13px; }
.mira-baner .btn { flex: none; }
@media (max-width: 640px) { .mira-baner { flex-wrap: wrap; } .mira-tresc { flex-basis: 100%; } }

/* ---------- kafle statystyk ---------- */
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 12px; margin-bottom: 16px; }
.tile { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--r); padding: 14px 16px; }
.tile .label { font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.tile .value { font-family: var(--font-mono); font-size: 24px; font-weight: 500; letter-spacing: -.02em; }
.tile .value small { font-size: 13px; color: var(--muted); font-weight: 400; }

/* ---------- lampki statusów ---------- */
.lamp { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 7px; vertical-align: 1px; }
.lamp.ok { background: var(--lamp-ok); box-shadow: 0 0 6px rgba(14,158,119,.35); }
.lamp.warn { background: var(--lamp-warn); box-shadow: 0 0 6px rgba(194,118,43,.35); }
.lamp.err { background: var(--lamp-err); box-shadow: 0 0 6px rgba(176,69,61,.35); }
.lamp.off { background: var(--surface-3); }

.badge {
  display: inline-block; padding: 2px 9px; border-radius: 999px;
  font-size: 12px; font-weight: 500; border: 1px solid var(--border);
  color: var(--ink-2); white-space: nowrap;
}
.badge.szkic { color: var(--muted); }
.badge.wyslana { color: #24608F; border-color: #BFD9EC; background: #EFF6FB; }
.badge.zaakceptowana { color: #0B7350; border-color: #B7E0CD; background: #EEF8F3; }
.badge.odrzucona { color: #9E3B33; border-color: #EBC8C4; background: #FCF0EE; }
.badge.aktywne { color: #8A5410; border-color: #EAD6B4; background: #FBF4E8; }
.badge.zakonczone { color: #0B7350; border-color: #B7E0CD; background: #EEF8F3; }
.badge.anulowane { color: var(--muted); }

/* ---------- tor etapów ---------- */
.stage-track { display: flex; align-items: center; gap: 0; margin: 6px 0; }
.stage-track .st { display: flex; align-items: center; flex: 1; min-width: 0; }
.stage-track .dot {
  width: 12px; height: 12px; border-radius: 50%; flex: none;
  background: var(--surface-3); border: 2px solid var(--border);
}
.stage-track .st.done .dot { background: var(--brass-dim); border-color: var(--brass-dim); }
.stage-track .st.current .dot { background: var(--brass); border-color: var(--brass); box-shadow: 0 0 8px rgba(14,158,119,.35); }
.stage-track .bar { height: 2px; flex: 1; background: var(--border); }
.stage-track .st.done .bar { background: var(--brass-dim); }
.stage-labels { display: flex; margin-top: 6px; }
.stage-labels span { flex: 1; font-size: 11.5px; color: var(--muted); text-align: left; }
.stage-labels span.current { color: var(--brass); font-weight: 600; }
.stage-mini { display: inline-flex; gap: 4px; align-items: center; }
.stage-mini i { width: 7px; height: 7px; border-radius: 50%; background: var(--surface-3); }
.stage-mini i.done { background: var(--brass-dim); }
.stage-mini i.current { background: var(--brass); box-shadow: 0 0 5px rgba(14,158,119,.35); }

/* ---------- pasek akcji zbiorczych (skrzynka) ---------- */
.skrz-pasek {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  background: var(--surface); border: 1px solid var(--brass); border-radius: var(--r);
  padding: 10px 14px; margin-bottom: 12px; box-shadow: var(--shadow);
}
.skrz-pasek > span { font-size: 13.5px; color: var(--ink-2); margin-right: auto; }
.skrz-pasek b { color: var(--brass); }

/* ---------- tabele ---------- */
.table-wrap { overflow-x: auto; }
table.tbl { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.tbl th {
  text-align: left; font-family: var(--font-display); font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  color: var(--muted); padding: 8px 10px; border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.tbl td { padding: 10px; border-bottom: 1px solid var(--border-soft); vertical-align: middle; }
.tbl tr:last-child td { border-bottom: none; }
.tbl tbody tr:hover { background: var(--surface-2); }
.tbl td.num, .tbl th.num { text-align: right; font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.tbl .row-actions { text-align: right; white-space: nowrap; }
.tbl .row-actions .btn { visibility: hidden; }
.tbl tr:hover .row-actions .btn { visibility: visible; }
tr.clickable { cursor: pointer; }

/* ---------- zakładki ---------- */
.tabs { display: flex; gap: 2px; border-bottom: 1px solid var(--border); margin-bottom: 18px; flex-wrap: wrap; }
.tab {
  background: none; border: none; color: var(--muted);
  font-size: 14px; font-weight: 500; padding: 9px 14px;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.tab:hover { color: var(--ink); }
.tab.active { color: var(--brass); border-bottom-color: var(--brass); }

/* ---------- modal ---------- */
.modal-back {
  position: fixed; inset: 0; background: rgba(18,42,34,.42);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 6vh 16px; z-index: 100; overflow-y: auto;
}
.modal {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; width: 100%; max-width: 560px;
  box-shadow: var(--shadow); animation: pop .14s ease-out;
}
.modal.wide { max-width: 760px; }
.modal.xwide { max-width: 1120px; }
@keyframes pop { from { transform: translateY(8px); opacity: 0; } }
.modal-head { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--border-soft); }
.modal-head h3 { font-size: 16px; }
.modal-body { padding: 20px; }
.modal-foot { display: flex; justify-content: flex-end; gap: 8px; padding: 14px 20px; border-top: 1px solid var(--border-soft); }

/* ---------- toast ---------- */
#toasts { position: fixed; bottom: 20px; right: 20px; z-index: 200; display: flex; flex-direction: column; gap: 8px; }
.toast {
  background: var(--surface-2); border: 1px solid var(--border);
  border-left: 3px solid var(--brass); color: var(--ink);
  padding: 11px 16px; border-radius: 8px; font-size: 13.5px;
  box-shadow: var(--shadow); max-width: 360px;
  animation: pop .15s ease-out;
}
.toast.err { border-left-color: var(--red); }
.toast.ok { border-left-color: var(--green); }

/* ---------- pusty stan ---------- */
.empty {
  text-align: center; color: var(--muted); padding: 42px 20px;
}
.empty b { display: block; color: var(--ink-2); font-family: var(--font-display); font-size: 15px; margin-bottom: 6px; }

/* ---------- edytor wyceny ---------- */
.q-items td { padding: 6px 6px; }
.q-items .input { padding: 7px 9px; }
.q-items input.num { text-align: right; font-family: var(--font-mono); }
.rozliczenie { font-family: var(--font-mono); font-size: 13.5px; }
.rozliczenie .row {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 6px 2px; border-bottom: 1px dashed var(--border-soft);
}
.rozliczenie .row > span:first-child { min-width: 0; }
.rozliczenie .row > span:last-child { flex: none; white-space: nowrap; text-align: right; }
.rozliczenie .row:last-child { border-bottom: none; }
.rozliczenie .row.wyroznij { color: var(--brass); font-weight: 600; }
.rozliczenie .row.minus { color: var(--red); }

/* ---------- maile ---------- */
.draft-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pre {
  white-space: pre-wrap; background: var(--bg); border: 1px solid var(--border-soft);
  border-radius: 8px; padding: 12px 14px; font-size: 13px; line-height: 1.6; color: var(--ink-2);
  max-height: 300px; overflow-y: auto;
}
.placeholder-legend { font-family: var(--font-mono); font-size: 12px; color: var(--muted); line-height: 1.9; }
.placeholder-legend code { background: var(--surface-2); padding: 1px 6px; border-radius: 4px; color: var(--brass); }

/* ---------- pipeline (Trello) ---------- */
.kanban { display: flex; gap: 12px; overflow-x: auto; align-items: flex-start; padding-bottom: 12px; }
.kb-list {
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--r);
  min-width: 250px; width: 250px; flex: none; padding: 12px;
}
.kb-list h4 { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; display: flex; justify-content: space-between; }
.kb-card {
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 8px;
  padding: 10px 12px; margin-bottom: 8px; cursor: grab; font-size: 13.5px;
}
.kb-card:hover { border-color: var(--muted); }
.kb-card.dragging { opacity: .45; }
.kb-list.dragover { border-color: var(--brass); background: rgba(14,158,119,.06); }
.kb-labels { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 6px; }
.kb-label { height: 7px; min-width: 32px; border-radius: 4px; display: inline-block; }
.kb-label.tagged { height: auto; min-width: 0; padding: 1px 8px; font-size: 11px; color: #FFFFFF; font-weight: 600; border-radius: 4px; }
.kb-due { font-size: 11.5px; color: var(--muted); margin-top: 5px; }

/* kolory etykiet Trello */
.tl-green { background: #4BBF6B; } .tl-yellow { background: #E6C60D; } .tl-orange { background: #E79217; }
.tl-red { background: #EF4E4E; } .tl-purple { background: #9F8FEF; } .tl-blue { background: #579DFF; }
.tl-sky { background: #6CC3E0; } .tl-lime { background: #94C748; } .tl-pink { background: #E774BB; }
.tl-black { background: #8590A2; } .tl-null { background: var(--surface-3); }

/* ---------- wykresy ---------- */
.chart-card svg { display: block; width: 100%; height: auto; }
.chart-legend { display: flex; gap: 18px; font-size: 12.5px; color: var(--ink-2); margin-bottom: 10px; flex-wrap: wrap; }
.chart-legend .key { display: inline-flex; align-items: center; gap: 7px; }
.chart-legend .swatch { width: 10px; height: 10px; border-radius: 3px; display: inline-block; }
#chart-tip {
  position: fixed; pointer-events: none; z-index: 300;
  background: var(--surface-3); border: 1px solid var(--border);
  border-radius: 7px; padding: 8px 11px; font-size: 12.5px;
  box-shadow: var(--shadow); display: none; max-width: 260px;
}
#chart-tip b { font-family: var(--font-mono); font-weight: 500; }
.advisor .wniosek { display: flex; gap: 10px; padding: 9px 0; border-bottom: 1px dashed var(--border-soft); font-size: 14px; }
.advisor .wniosek:last-child { border-bottom: none; }
.advisor .ikona { flex: none; margin-top: 2px; }

/* ---------- baza wiedzy ---------- */
.kb-cena {
  cursor: pointer; border-bottom: 1px dashed var(--muted); padding-bottom: 1px;
}
.kb-cena:hover { color: var(--brass); border-bottom-color: var(--brass); }
.kb-strona {
  display: flex; gap: 12px; align-items: center;
  padding: 9px 0; border-bottom: 1px dashed var(--border-soft); cursor: pointer;
}
.kb-strona:hover b { color: var(--brass); }
.kb-strona img { width: 54px; height: 54px; object-fit: cover; border-radius: 6px; border: 1px solid var(--border); flex: none; }
.kb-galeria { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 4px 18px; }
.kb-galeria .kb-strona { border-bottom: none; }
.kb-galeria-modal { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 8px; margin-bottom: 14px; }
.kb-galeria-modal img { width: 100%; border-radius: 8px; border: 1px solid var(--border); }

/* ---------- katalog wyrobów ---------- */
.prod-siatka { display: grid; grid-template-columns: repeat(auto-fill, minmax(158px, 1fr)); gap: 12px; }
.prod-karta {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden; cursor: pointer;
  transition: border-color .15s, transform .15s;
}
.prod-karta:hover { border-color: var(--brass); transform: translateY(-2px); }
.prod-karta img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; background: var(--bg); }
.prod-brak {
  width: 100%; aspect-ratio: 1; display: grid; place-items: center;
  background: var(--bg); color: var(--muted); font-size: 12px;
}
.prod-tresc { padding: 9px 10px; }
.prod-tresc b { font-size: 12.5px; line-height: 1.35; display: block; }

/* ---------- ustawienia ---------- */
.settings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 16px; align-items: start; }
.rabat-row, .etap-row { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; }
.etap-row .uchwyt { color: var(--muted); font-family: var(--font-mono); font-size: 12px; width: 22px; text-align: center; }

/* ---------- responsywność ---------- */
@media (max-width: 1180px) {
  .grid-2 { grid-template-columns: 1fr !important; }
}
@media (max-width: 960px) {
  .grid-2, .grid-3, .draft-compare { grid-template-columns: 1fr; }
  .sidebar { width: 64px; }
  .side-brand b, .nav-item span, .side-user .who, .side-nav .group { display: none; }
  .side-brand { justify-content: center; padding: 16px 6px; }
  .side-logo { height: 22px; }
  .nav-item { justify-content: center; padding: 10px; }
  .content, .topbar { padding-left: 16px; padding-right: 16px; }
}
@media (max-width: 640px) {
  #app { flex-direction: column; }
  .sidebar { width: 100%; height: auto; position: static; flex-direction: row; align-items: center; }
  .side-nav { display: flex; padding: 4px; overflow-x: auto; }
  .side-nav .group { display: none; }
  .side-user { border-top: none; padding: 8px; }
  .form-row { flex-direction: column; gap: 0; }
}
