/* ================================================================
   SCANNER DIRITTI INESPRESSI INPS 2026 — Foglio di stile
   Crescenzo Coviello · Diritti Nascosti  ·  v 1.0
   Palette: Navy #1a2e5a · Oro #b8963e · Antracite #2d2d2d
   ================================================================ */

/* ── Variabili colore ── */
:root {
  --navy:      #1a2e5a;
  --navy2:     #243d74;
  --blue:      #1a2e5a;
  --blue2:     #2a4a8a;
  --gold:      #b8963e;
  --gold2:     #d4a94a;
  --gold3:     #e8c46a;
  --green:     #059669;
  --green2:    #d1fae5;
  --red:       #dc2626;
  --red2:      #fee2e2;
  --text1:     #1a1a1a;
  --text2:     #334155;
  --text3:     #64748b;
  --text4:     #94a3b8;
  --bg:        #f5f4f0;
  --bg2:       #ebe9e3;
  --white:     #ffffff;
  --border:    #c8c4b8;
  --border2:   #e4e1d8;
  --radius:    10px;
  --shadow:    0 2px 12px rgba(26,46,90,.10);
  --shadow2:   0 4px 24px rgba(26,46,90,.14);
}

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--bg);
  color: var(--text1);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--gold2); }
img { max-width: 100%; height: auto; display: inline-block; }

/* ══════════════════════════════════════════════════
   TOPBAR
══════════════════════════════════════════════════ */
.topbar {
  background: var(--navy);
  color: #c8d2e8;
  font-size: 0.78rem;
  padding: 6px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a { color: var(--gold3); }
.topbar a:hover { color: #fff; }
.topbar .sep { opacity: .45; margin: 0 4px; }
.topbar-links { display: flex; align-items: center; flex-wrap: wrap; gap: 2px; }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: #94a3b8;
}
.badge-live {
  background: var(--green);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  animation: pulse-live 2s infinite;
}
@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50%       { opacity: .6; }
}

/* ══════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════ */
.navbar {
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
  position: sticky;
  top: 42px;
  z-index: 900;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.nav-subtitle {
  font-size: 0.82rem;
  color: var(--text2);
  text-align: right;
  line-height: 1.4;
}
.nav-subtitle strong { display: block; color: var(--navy); font-size: 0.88rem; }
.nav-pill {
  background: var(--navy);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #243d74 55%, #2a4a8a 100%);
  color: #fff;
  padding: 52px 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-left { flex: 1; min-width: 260px; max-width: 680px; }
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  color: #fff;
}
.hero h1 em { color: var(--gold3); font-style: italic; }
.hero-sub {
  font-size: clamp(0.88rem, 1.6vw, 1rem);
  color: #b8c8e0;
  max-width: 600px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-self: center;
}
.hs {
  background: rgba(255,255,255,.10);
  border: 1.5px solid rgba(184,150,62,.45);
  border-radius: 12px;
  padding: 18px 24px;
  text-align: center;
  min-width: 90px;
  backdrop-filter: blur(4px);
}
.hs-n {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold3);
  line-height: 1;
}
.hs-l { font-size: 0.72rem; color: #b8c8e0; margin-top: 4px; text-transform: uppercase; letter-spacing: .04em; }

/* ══════════════════════════════════════════════════
   APP WRAP  (layout form + risultati)
══════════════════════════════════════════════════ */
.app-wrap {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 24px;
  max-width: 1280px;
  margin: 28px auto;
  padding: 0 24px;
  align-items: start;
}
@media (max-width: 900px) {
  .app-wrap { grid-template-columns: 1fr; }
}

/* ── Form card ── */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  overflow: hidden;
  position: sticky;
  top: 120px;
}
.fc-head {
  background: var(--navy);
  color: #fff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.fc-head i { font-size: 1rem; color: var(--gold3); }
.fc-body { padding: 20px; }

/* Sezione titolo interno */
.sec {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 18px 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--gold3);
  display: flex;
  align-items: center;
  gap: 6px;
}
.sec:first-child { margin-top: 0; }
.sec i { color: var(--gold); }

/* Field group */
.fg { margin-bottom: 12px; }
.fg label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text2);
  margin-bottom: 4px;
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text1);
  background: #faf9f7;
  transition: border-color .2s, box-shadow .2s;
  appearance: auto;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,62,.15);
  background: #fff;
}
.fg .hint {
  font-size: 0.72rem;
  color: var(--text3);
  margin-top: 4px;
  line-height: 1.4;
}

/* Row a due colonne */
.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Tabella redditi storici */
.rt-scroll { overflow-x: auto; margin-bottom: 14px; }
.rt {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.rt thead th {
  background: var(--navy);
  color: #fff;
  padding: 7px 10px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}
.rt tbody tr:nth-child(even) td { background: #faf9f7; }
.rt tbody td {
  padding: 5px 8px;
  border-bottom: 1px solid var(--border2);
  vertical-align: middle;
}
.rt tbody td input {
  width: 100%;
  padding: 4px 8px;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  font-size: 0.82rem;
  background: #fff;
}
.rt tbody td input:focus {
  outline: none;
  border-color: var(--gold);
}
.col-hidden { display: none; }

/* Pulsante scansione */
.btn-scan {
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--navy) 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity .2s, transform .15s;
  margin-top: 4px;
  letter-spacing: -.01em;
}
.btn-scan:hover  { opacity: .92; transform: translateY(-1px); }
.btn-scan:active { opacity: 1;   transform: translateY(0); }
.btn-scan i { color: var(--gold3); }

/* Error bar */
.err-bar {
  display: none;
  background: var(--red2);
  border: 1.5px solid var(--red);
  color: var(--red);
  border-radius: 7px;
  padding: 9px 14px;
  font-size: 0.83rem;
  font-weight: 600;
  margin-top: 10px;
  align-items: center;
  gap: 8px;
}
.err-bar.visible { display: flex; }

/* ══════════════════════════════════════════════════
   PANNELLO RISULTATI
══════════════════════════════════════════════════ */
.res-panel {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 28px;
  min-height: 520px;
}

/* Placeholder */
.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 380px;
  color: var(--text4);
  text-align: center;
  padding: 32px;
}
.placeholder i { font-size: 3.5rem; color: var(--border2); }
.placeholder p { font-size: 0.95rem; max-width: 380px; line-height: 1.7; }

/* Loader */
.loader {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 380px;
  color: var(--text3);
}
.loader.active { display: flex; }
.spin {
  width: 48px;
  height: 48px;
  border: 4px solid var(--border2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Summary head ── */
.sum-head {
  background: linear-gradient(135deg, var(--navy) 0%, #243d74 100%);
  color: #fff;
  border-radius: 10px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.sh-title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.sh-meta {
  font-size: 0.79rem;
  color: #a8bcd8;
  margin-top: 4px;
  line-height: 1.5;
}
.sh-right { text-align: right; min-width: 180px; }
.sh-lbl {
  font-size: 0.72rem;
  color: #a8bcd8;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 4px;
}
.sh-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold3);
  letter-spacing: -.02em;
  line-height: 1;
}

/* ── Griglia prestazioni ── */
.prest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}
.prest-card {
  border: 1.5px solid var(--border2);
  border-radius: 9px;
  padding: 14px 16px;
  background: #faf9f7;
  transition: box-shadow .2s;
}
.prest-card:hover { box-shadow: 0 4px 16px rgba(26,46,90,.09); }
.prest-card.trovato {
  border-color: #6ee7b7;
  background: #ecfdf5;
}
.prest-card.non-trovato {
  border-color: var(--border2);
  background: #faf9f7;
  opacity: .8;
}
.pc-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.pc-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.prest-card.trovato  .pc-icon { background: #d1fae5; color: var(--green); }
.prest-card.non-trovato .pc-icon { background: var(--bg2); color: var(--text4); }
.pc-name { font-size: 0.8rem; font-weight: 700; color: var(--text1); line-height: 1.3; }
.pc-status {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 6px;
}
.trovato  .pc-status { background: #d1fae5; color: var(--green); }
.non-trovato .pc-status { background: var(--bg2); color: var(--text4); }
.pc-amount {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
}
.trovato .pc-amount { color: var(--green); }
.pc-note { font-size: 0.72rem; color: var(--text3); margin-top: 4px; line-height: 1.4; }

/* ── Relazione tecnica ── */
.rel-card {
  border: 1.5px solid var(--border2);
  border-radius: 9px;
  overflow: hidden;
  margin-bottom: 18px;
}
.rel-trig {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  cursor: pointer;
  background: #faf9f7;
  user-select: none;
  gap: 10px;
  flex-wrap: wrap;
}
.rel-trig:hover { background: var(--bg2); }
.rel-trig-l {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
}
.rel-trig-l i { color: var(--gold); }
.rel-trig-r {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.79rem;
  color: var(--text3);
}
.rel-body {
  display: none;
  padding: 18px 20px;
  font-size: 0.87rem;
  color: var(--text2);
  line-height: 1.75;
  border-top: 1.5px solid var(--border2);
}
.rel-body.open { display: block; }
.rel-body p { margin-bottom: 10px; }
.rel-body strong { color: var(--navy); }

/* ── Card anni ── */
.anni-card {
  border: 1.5px solid var(--border2);
  border-radius: 9px;
  overflow: hidden;
  margin-bottom: 18px;
}
.anni-hdr {
  background: var(--navy);
  color: #fff;
  padding: 11px 18px;
  font-size: 0.85rem;
  font-weight: 700;
}
.anno-row {
  border-bottom: 1px solid var(--border2);
}
.anno-row:last-child { border-bottom: none; }
.anno-trig {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  cursor: pointer;
  background: #faf9f7;
  font-size: 0.85rem;
  gap: 8px;
  flex-wrap: wrap;
  user-select: none;
}
.anno-trig:hover { background: var(--bg2); }
.anno-year { font-weight: 700; color: var(--navy); }
.anno-amt  { font-weight: 800; color: var(--green); font-size: 0.95rem; }
.anno-amt.zero { color: var(--text4); }
.anno-body {
  display: none;
  padding: 12px 16px 16px;
  font-size: 0.82rem;
  color: var(--text2);
  border-top: 1px solid var(--border2);
  background: #fff;
}
.anno-body.open { display: block; }
.anno-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 6px;
}
.anno-table th {
  text-align: left;
  font-size: 0.73rem;
  color: var(--text3);
  font-weight: 600;
  padding: 4px 8px;
  border-bottom: 1.5px solid var(--border2);
}
.anno-table td {
  padding: 5px 8px;
  border-bottom: 1px solid var(--border2);
  vertical-align: middle;
}
.anno-table tr:last-child td { border-bottom: none; }
.anno-table .amt-cell { font-weight: 700; color: var(--navy); text-align: right; }
.anno-table .green { color: var(--green); }

/* ── CTA strip ── */
.cta-strip {
  background: linear-gradient(135deg, #faf6ed 0%, #f5ead0 100%);
  border: 1.5px solid var(--gold3);
  border-radius: 9px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-txt { font-size: 0.88rem; color: var(--text1); max-width: 520px; line-height: 1.6; }
.cta-txt strong { color: var(--gold); }
.btn-cta {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 7px;
  white-space: nowrap;
  transition: background .2s, transform .15s;
  text-decoration: none;
  border: 2px solid var(--gold);
}
.btn-cta:hover { background: var(--gold); transform: translateY(-1px); text-decoration: none; color: #fff; }

/* ══════════════════════════════════════════════════
   NOTE LEGALI
══════════════════════════════════════════════════ */
.note-wrap {
  max-width: 1280px;
  margin: 0 auto 28px;
  padding: 0 24px;
}
.nl {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.nl-hdr {
  background: var(--navy);
  color: #fff;
  padding: 12px 22px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nl-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.nl-col {
  padding: 20px 24px;
  font-size: 0.84rem;
  color: var(--text2);
  line-height: 1.7;
  border-right: 1px solid var(--border2);
}
.nl-col:last-child { border-right: none; }
.nl-col strong { color: var(--navy); display: block; margin-bottom: 8px; font-size: 0.88rem; }
.nl-col p { margin-bottom: 8px; }
.nl-col ul { padding-left: 18px; }
.nl-col ul li { margin-bottom: 4px; }
@media (max-width: 700px) {
  .nl-body { grid-template-columns: 1fr; }
  .nl-col  { border-right: none; border-bottom: 1px solid var(--border2); }
  .nl-col:last-child { border-bottom: none; }
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
footer {
  background: var(--navy);
  color: #94a3b8;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.f-brand {
  font-size: 0.82rem;
  color: #cbd5e1;
  font-weight: 600;
  margin-bottom: 4px;
}
.f-meta {
  font-size: 0.76rem;
  color: #94a3b8;
}
.f-meta a { color: var(--gold3); }
.f-meta a:hover { color: #fff; }

/* ══════════════════════════════════════════════════
   EXPORT BAR
══════════════════════════════════════════════════ */
#xbar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--white);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -4px 20px rgba(26,46,90,.12);
  padding: 12px 24px;
}
#xbar.visible { display: block; }
.xbar-in {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.xbar-lbl {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 7px;
}
.xbar-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.xbtn {
  padding: 8px 16px;
  border-radius: 6px;
  border: 1.5px solid transparent;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity .2s, transform .15s;
}
.xbtn:hover { opacity: .88; transform: translateY(-1px); }
.xb-print { background: var(--navy);  color: #fff; }
.xb-mail  { background: var(--gold);  color: #fff; }
.xb-wa    { background: #25d366;      color: #fff; }

/* ══════════════════════════════════════════════════
   MODAL EMAIL
══════════════════════════════════════════════════ */
.mbg {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1200;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.mbg.open { display: flex; }
.mbox {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
  width: 100%;
  max-width: 480px;
  overflow: hidden;
}
.mtop {
  background: var(--navy);
  color: #fff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mtop h3 {
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mc {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
}
.mc:hover { color: #fff; }
.mb { padding: 20px; }
.mfg { margin-bottom: 14px; }
.mfg label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text2);
  margin-bottom: 4px;
}
.mfg input,
.mfg textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text1);
  background: #faf9f7;
}
.mfg input:focus,
.mfg textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,62,.15);
  background: #fff;
}
.btn-send {
  width: 100%;
  padding: 12px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: opacity .2s;
}
.btn-send:hover { opacity: .9; }

/* ══════════════════════════════════════════════════
   STAMPA
══════════════════════════════════════════════════ */
@media print {
  #top-disclaimer, .topbar, .navbar, .hero,
  .form-card, .placeholder, .loader,
  .btn-scan, .err-bar, .cta-strip,
  #xbar, .mbg, footer { display: none !important; }

  #print-header { display: block !important; margin-bottom: 20px; }
  .app-wrap { grid-template-columns: 1fr; padding: 0; margin: 0; }
  .res-panel { box-shadow: none; padding: 0; min-height: unset; }
  .rel-body  { display: block !important; }
  .anno-body { display: block !important; }
  body { background: #fff; font-size: 11px; }
  .prest-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .hero { padding: 32px 18px 28px; }
  .hero-stats { gap: 10px; }
  .hs { padding: 12px 16px; min-width: 70px; }
  .hs-n { font-size: 1.8rem; }
  .app-wrap { padding: 0 12px; gap: 16px; margin-top: 16px; }
  .form-card { position: static; }
  .res-panel { padding: 16px; }
  .sum-head { flex-direction: column; align-items: flex-start; }
  .sh-right { text-align: left; }
  .cta-strip { flex-direction: column; }
  .note-wrap { padding: 0 12px; }
  footer { padding: 18px; flex-direction: column; align-items: flex-start; }
  .xbar-in { flex-direction: column; align-items: flex-start; }
  .row2 { grid-template-columns: 1fr; }
  .topbar { flex-direction: column; align-items: flex-start; gap: 4px; }
  .navbar { padding: 10px 14px; flex-direction: column; align-items: flex-start; top: 68px; }
}
