:root {
  --bg: #f4f8f7;
  --surface: #ffffff;
  --ink: #16211f;
  --muted: #5c6b68;
  --line: #dde6e4;
  --accent: #0f766e;
  --accent-soft: #dcf1ee;
  --good: #157a45;
  --good-soft: #e3f5ec;
  --warn: #9a6700;
  --warn-soft: #fff3d6;
  --bad: #b3261e;
  --bad-soft: #fdeceb;
  --radius: 10px;
  font-size: 15px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

header {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 0.9rem 1.5rem;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 10;
}
.brand { display: flex; align-items: center; gap: 0.6rem; cursor: pointer; color: inherit; text-decoration: none; }
.brand-mark { font-size: 1.6rem; }
.brand strong { display: block; font-size: 1.05rem; }
.brand small { display: block; color: var(--muted); font-size: 0.78rem; }
nav { display: flex; gap: 0.5rem; align-items: center; }
.user-box { display: flex; align-items: center; gap: 0.5rem; }
.user-email { color: var(--muted); font-size: 0.8rem; max-width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.signin-panel { text-align: center; padding: 2.5rem 1.5rem; }
.signin-panel h1 { margin-bottom: 0.5rem; }
.signin-panel .btn { margin-top: 1rem; }

main { max-width: 940px; margin: 1.5rem auto 4rem; padding: 0 1.25rem; }
footer { max-width: 940px; margin: 0 auto 2rem; padding: 0 1.25rem; color: var(--muted); font-size: 0.8rem; }

h1 { font-size: 1.35rem; margin: 0 0 0.75rem; }
h2 { font-size: 1rem; margin: 0 0 0.6rem; }
.section-title { margin: 1.4rem 0 0.75rem; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  margin-bottom: 1rem;
}

/* ----- snapshot ----- */
.snapshot {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.75rem;
  margin-bottom: 0.4rem;
}
.snap-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--muted);
  border-radius: var(--radius);
  padding: 0.8rem 0.95rem;
}
.snap-item.good { border-top-color: var(--good); }
.snap-item.warn { border-top-color: var(--warn); }
.snap-item h3 {
  margin: 0 0 0.3rem; font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--muted);
}
.snap-item p { margin: 0; font-size: 0.92rem; }
.snapshot-note { margin: 0 0 1.1rem; }
@media (max-width: 640px) { .snapshot { grid-template-columns: 1fr; } }

/* ----- suggested next step ----- */
.next-step { border-left: 4px solid var(--accent); }
.next-step-head { display: flex; justify-content: space-between; align-items: center; gap: 0.6rem; }
.next-step-head h2 { margin: 0; }
.next-step-label { font-size: 1.15rem; font-weight: 700; margin: 0.45rem 0 0.2rem; }
.next-step-why { margin: 0; font-size: 0.92rem; color: var(--muted); }

/* ----- review progress ----- */
.section-head { display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; flex-wrap: wrap; margin: 1.4rem 0 0.75rem; }
.section-head .section-title { margin: 0; }
.review-progress { display: flex; align-items: center; gap: 0.6rem; }
.progress-text { font-size: 0.82rem; font-weight: 600; color: var(--muted); }

/* ----- criterion cards ----- */
.crit-card p { margin: 0.35rem 0; font-size: 0.92rem; }
.crit-card.flash { box-shadow: 0 0 0 3px var(--accent-soft); transition: box-shadow 0.2s; }
.best-evidence { margin: 0.35rem 0; }
.best-evidence .quote { margin: 0.2rem 0 0; }
.ev-summary { margin: 0.1rem 0 0; font-size: 0.92rem; }
.ev-tag {
  display: inline-block; font-size: 0.66rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--muted); background: var(--bg);
  border: 1px solid var(--line); border-radius: 999px; padding: 0.02rem 0.4rem; vertical-align: 1px;
}
.crit-head { display: flex; justify-content: space-between; align-items: baseline; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 0.4rem; }
.crit-head h3 { margin: 0; font-size: 1rem; }
.k { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 0.05rem; }
.k-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); font-weight: 700; }
.score-row { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.7rem; }
.crit-card .crit-note { margin-top: 0.5rem; }

/* ----- supporting materials ----- */
.materials-card { border-left: 4px solid var(--accent); }
.materials { list-style: none; margin: 0.3rem 0 0.6rem; padding: 0; }
.materials li { padding: 0.3rem 0; border-top: 1px solid var(--line); font-size: 0.9rem; word-break: break-word; }
.materials li:first-child { border-top: none; }
.mat-label { font-weight: 700; margin-right: 0.3rem; }
.materials a { color: var(--accent); }

/* ----- claims to verify ----- */
.verify-card { border-left: 4px solid var(--warn); }

/* ----- decision ----- */
.decision-card { border: 2px solid var(--ink); }

label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.35rem; }
label small { font-weight: 400; color: var(--muted); display: block; }
textarea, input[type="text"], input[type="email"], select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  font: inherit;
  color: inherit;
  background: #fbfdfd;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
textarea:focus, input:focus, select:focus {
  outline: 2px solid transparent; /* visible in forced-colors mode; the ring below does the rest */
  outline-offset: 1px;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

/* custom dropdown — styles the trigger AND the option list (replaces native <select>) */
.dropdown { position: relative; display: block; width: 100%; }
.dropdown-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  background: #fbfdfd;
  font: inherit; color: inherit; text-align: left; cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.dropdown-trigger:hover { border-color: #baccc7; }
.dropdown.open .dropdown-trigger,
.dropdown-trigger:focus-visible {
  outline: 2px solid transparent; outline-offset: 1px;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.dropdown-label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dropdown-label.placeholder { color: var(--muted); }
.dropdown-chevron {
  flex-shrink: 0; width: 14px; height: 14px;
  background: center / 14px 14px no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M3.5 5.25 7 8.75l3.5-3.5' fill='none' stroke='%235c6b68' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transition: transform 0.15s ease;
}
.dropdown.open .dropdown-chevron { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; z-index: 30; top: calc(100% + 5px); left: 0;
  width: 100%; margin: 0; padding: 0.3rem; list-style: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(22, 33, 31, 0.14);
  max-height: 264px; overflow-y: auto;
}
.dropdown-option {
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
  padding: 0.45rem 0.6rem; border-radius: 6px;
  font-size: 0.9rem; color: var(--ink); cursor: pointer;
}
.dropdown-option.active { background: var(--accent-soft); }
.dropdown-option.selected { color: var(--accent); font-weight: 600; }
.dropdown-option.selected::after { content: "✓"; font-size: 0.8rem; }
textarea { min-height: 200px; resize: vertical; }
textarea.small { min-height: 70px; }

.opt-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.1rem; }
@media (max-width: 640px) { .opt-row { grid-template-columns: 1fr; } }

.reuse-row { border: 1px dashed var(--line); border-radius: 8px; padding: 0.6rem 0.75rem; background: #fafdfc; }
.reuse-controls { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; margin-top: 0.4rem; }
.reuse-controls .dropdown { width: auto; min-width: 220px; flex: 1 1 220px; }

.btn {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { filter: brightness(1.08); }
a.btn { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }
.btn:disabled { opacity: 0.55; cursor: wait; }
.btn.ghost { background: transparent; color: var(--accent); }
.btn.ghost:hover { background: var(--accent-soft); }
.btn.subtle { background: transparent; border-color: var(--line); color: var(--muted); font-weight: 500; }
.btn.subtle:hover { color: var(--ink); }
.btn.danger { background: transparent; border-color: var(--line); color: var(--bad); font-weight: 500; }
.btn.sm { padding: 0.25rem 0.6rem; font-size: 0.8rem; }

.actions { display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; margin-top: 0.75rem; }

.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.12rem 0.55rem;
  border-radius: 999px;
  vertical-align: middle;
  white-space: nowrap;
}
.badge.ai { background: var(--accent-soft); color: var(--accent); }
.badge.ev-strong { background: var(--good-soft); color: var(--good); }
.badge.ev-some { background: var(--warn-soft); color: var(--warn); }
.badge.ev-insufficient { background: var(--bad-soft); color: var(--bad); }

.quote {
  border-left: 3px solid var(--line);
  margin: 0.4rem 0;
  padding: 0.15rem 0.75rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: italic;
}
.check-hint { color: var(--warn); font-style: normal; font-size: 0.75rem; font-weight: 600; white-space: nowrap; }

.item { padding: 0.6rem 0; border-top: 1px solid var(--line); }
.item:first-of-type { border-top: none; padding-top: 0.1rem; }
.item p { margin: 0.25rem 0; font-size: 0.9rem; }
.interp { color: var(--muted); font-size: 0.88rem; }

ul.tight, ol.tight { margin: 0.25rem 0; padding-left: 1.2rem; }
ul.tight li, ol.tight li { margin: 0.3rem 0; }

.meta { color: var(--muted); font-size: 0.8rem; }
.privacy-note {
  margin: 0.5rem 0 0;
  padding: 0.5rem 0.7rem;
  background: var(--accent-soft);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.8rem;
}
.links-error {
  margin-top: 0.4rem;
  padding: 0.4rem 0.6rem;
  background: var(--warn-soft);
  border-radius: 8px;
  color: var(--warn);
  font-size: 0.78rem;
}
.spinner {
  display: inline-block; width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.4); border-top-color: #fff;
  border-radius: 50%; animation: spin 0.8s linear infinite; vertical-align: -2px; margin-right: 6px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-panel { text-align: center; padding: 3rem 1rem; color: var(--muted); }
.loading-panel .spinner { border-color: var(--line); border-top-color: var(--accent); width: 26px; height: 26px; }

details.collapse { padding: 0; }
details.collapse summary {
  cursor: pointer; padding: 0.85rem 1.25rem;
  font-weight: 600; font-size: 0.92rem; color: var(--muted);
}
details.collapse[open] summary { border-bottom: 1px solid var(--line); color: var(--ink); }
.collapse-body { padding: 0.9rem 1.25rem 1.1rem; }
.collapse-body h3 { font-size: 0.88rem; margin: 1rem 0 0.3rem; }
.collapse-body h3:first-child { margin-top: 0; }

details details { margin-top: 0.5rem; }
details details summary { cursor: pointer; color: var(--accent); font-size: 0.88rem; font-weight: 600; }
pre {
  background: #101b19; color: #dcebe8;
  padding: 0.9rem; border-radius: 8px;
  font-size: 0.75rem; overflow-x: auto; white-space: pre-wrap; word-break: break-word;
  max-height: 400px; overflow-y: auto;
}
pre.plain {
  background: #f2f6f5; color: var(--ink);
  border: 1px solid var(--line);
  max-height: 240px;
}

.seg { display: inline-flex; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.seg.wrap { flex-wrap: wrap; }
.seg button {
  border: none; background: transparent; padding: 0.4rem 0.8rem;
  font: inherit; font-size: 0.85rem; cursor: pointer; color: var(--muted);
  transition: background 0.15s ease, color 0.15s ease;
}
.seg button:hover:not(.on) { color: var(--ink); }
.seg button + button { border-left: 1px solid var(--line); }
.seg button.on { background: var(--accent); color: #fff; }
.decision-card .seg button.on { background: var(--ink); }

/* score controls: bigger targets, clearly distinct selection */
.score-seg button {
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  min-width: 44px;
}
.score-seg button:hover { background: var(--accent-soft); color: var(--ink); }
.score-seg button.on { background: var(--accent); color: #fff; font-weight: 700; }
@media (max-width: 560px) {
  .score-seg {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.4rem;
    border: none; border-radius: 0; overflow: visible; width: 100%;
  }
  .score-seg button, .score-seg button + button { border: 1px solid var(--line); border-radius: 8px; padding: 0.6rem 0; }
  .score-seg button.on { border-color: var(--accent); }
}

.fbrow { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.45rem 0; flex-wrap: wrap; }
.fbrow span { font-size: 0.9rem; }

.history-row {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 0.65rem 0; border-top: 1px solid var(--line); flex-wrap: wrap;
}
.history-row:first-child { border-top: none; }
.history-main { display: flex; flex-direction: column; min-width: 0; }
.history-main strong { font-size: 0.95rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 440px; }
.history-actions { display: flex; gap: 0.4rem; flex-shrink: 0; }
.decision-chip { font-weight: 700; color: var(--ink); }

.toast {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff;
  padding: 0.6rem 1.1rem; border-radius: 8px; font-size: 0.9rem;
  z-index: 100; box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

/* modal dialog (replaces native prompt/confirm) */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: 1rem;
  background: rgba(22, 33, 31, 0.45);
  opacity: 0; transition: opacity 0.15s ease;
}
.modal-backdrop.show { opacity: 1; }
.modal {
  width: 100%; max-width: 400px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.3rem 1.4rem 1.1rem;
  box-shadow: 0 24px 60px rgba(22, 33, 31, 0.3);
  transform: translateY(8px) scale(0.98); transition: transform 0.15s ease;
}
.modal-backdrop.show .modal { transform: none; }
.modal-title { font-size: 1.05rem; margin: 0 0 0.5rem; }
.modal-msg { margin: 0 0 0.9rem; color: var(--muted); font-size: 0.9rem; }
.modal-input { margin: 0.2rem 0 1.1rem; }
.modal-actions { display: flex; justify-content: flex-end; gap: 0.6rem; }
.btn.danger-solid { background: var(--bad); border-color: var(--bad); color: #fff; }
.btn.danger-solid:hover { filter: brightness(1.05); }

/* help button (header) + help panel */
.icon-btn {
  width: 2rem; height: 2rem; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 50%;
  background: var(--surface); color: var(--muted);
  font-size: 0.95rem; font-weight: 700; cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.icon-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.modal.modal-lg {
  max-width: 600px; max-height: 85vh;
  padding: 0; overflow: hidden; position: relative;
  display: flex; flex-direction: column;
}
.modal-close {
  position: absolute; top: 0.85rem; right: 0.9rem;
  width: 1.9rem; height: 1.9rem; border-radius: 50%;
  border: none; background: transparent; cursor: pointer;
  font-size: 1.5rem; line-height: 1; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}
.modal-close:hover { background: var(--bg); color: var(--ink); }
.help-head {
  display: flex; gap: 0.9rem; align-items: flex-start;
  padding: 1.4rem 3rem 1.15rem 1.5rem;
  border-bottom: 1px solid var(--line);
}
.help-mark { font-size: 2rem; line-height: 1; }
.help-head h2 { margin: 0 0 0.15rem; font-size: 1.2rem; }
.help-tagline { margin: 0; color: var(--muted); font-size: 0.9rem; }
.help-body { padding: 1.25rem 1.5rem; overflow-y: auto; flex: 1 1 auto; min-height: 0; }
.help-body section + section { margin-top: 1.5rem; }
.help-body h3 {
  margin: 0 0 0.6rem; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent);
}
.help-body > section > p { margin: 0; font-size: 0.93rem; line-height: 1.6; }
.help-steps { list-style: none; counter-reset: step; margin: 0; padding: 0; }
.help-steps li {
  position: relative; counter-increment: step;
  padding: 0.05rem 0 0.9rem 2.3rem; font-size: 0.93rem; line-height: 1.55;
}
.help-steps li:last-child { padding-bottom: 0; }
.help-steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 1.6rem; height: 1.6rem; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.help-steps li strong, .help-list li strong { font-weight: 600; }
.help-list { list-style: none; margin: 0; padding: 0; }
.help-list li {
  position: relative; padding: 0 0 0.55rem 1.5rem;
  font-size: 0.93rem; line-height: 1.55;
}
.help-list li:last-child { padding-bottom: 0; }
.help-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 700; font-size: 0.9rem;
}
.help-note {
  margin: 1.3rem 0 0; padding: 0.65rem 0.8rem;
  background: var(--bg); border-radius: 8px;
  color: var(--muted); font-size: 0.82rem; line-height: 1.5;
}
.help-foot {
  display: flex; justify-content: flex-end;
  padding: 0.9rem 1.5rem; border-top: 1px solid var(--line);
}

/* settings (gear) menu */
.menu-wrap { position: relative; display: inline-flex; }
.menu {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 60;
  min-width: 210px; padding: 0.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(22, 33, 31, 0.16);
}
.menu[hidden] { display: none; }
.menu-head {
  padding: 0.5rem 0.6rem 0.6rem; margin-bottom: 0.3rem;
  border-bottom: 1px solid var(--line);
}
.menu-head-label {
  display: block; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 0.1rem;
}
.menu-head-email {
  display: block; font-size: 0.85rem; font-weight: 600;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 230px;
}
.menu-item {
  display: flex; align-items: center; gap: 0.6rem; width: 100%;
  padding: 0.5rem 0.6rem; border: none; background: transparent;
  border-radius: 8px; cursor: pointer;
  font: inherit; font-size: 0.9rem; color: var(--ink); text-align: left;
  transition: background 0.12s ease, color 0.12s ease;
}
.menu-item:hover, .menu-item:focus-visible { background: var(--accent-soft); color: var(--accent); outline: none; }
.menu-ico { width: 16px; height: 16px; flex-shrink: 0; }
.menu-item-danger { color: var(--bad); }
.menu-item-danger:hover, .menu-item-danger:focus-visible { background: rgba(179, 38, 30, 0.09); color: var(--bad); }

/* access administration */
.admin-main { max-width: 760px; }
.admin-heading {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  margin-bottom: 1rem;
}
.admin-heading h1 { margin-bottom: 0.25rem; }
.admin-heading p { margin: 0; max-width: 560px; }
.access-count {
  flex-shrink: 0; padding: 0.3rem 0.55rem; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent); font-size: 0.75rem; font-weight: 700;
}
.allow-form { display: flex; align-items: flex-end; gap: 0.7rem; }
.allow-input { flex: 1 1 auto; }
.allow-form .btn { flex-shrink: 0; }
.allow-card { padding-top: 0.35rem; padding-bottom: 0.35rem; }
.allow-row {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.8rem 0; border-top: 1px solid var(--line);
}
.allow-row:first-child { border-top: none; }
.allow-person { min-width: 0; display: flex; flex-direction: column; gap: 0.2rem; }
.allow-person strong { overflow-wrap: anywhere; }
.access-badge {
  display: inline-block; margin-right: 0.45rem; padding: 0.1rem 0.4rem;
  border-radius: 999px; background: var(--accent-soft); color: var(--accent);
  font-size: 0.68rem; font-weight: 700; line-height: 1.5;
}
.access-badge.config { background: var(--ink); color: var(--surface); }

@media (max-width: 560px) {
  .history-main strong { max-width: 100%; }
  .admin-heading { display: block; }
  .access-count { display: inline-block; margin-top: 0.65rem; }
  .allow-form { align-items: stretch; flex-direction: column; }
}
