/*
 * Stratosphere Launch member portal.
 *
 * Deliberately self-contained: the portal pages do not load styles.css, so
 * nothing here can affect the marketing site and nothing there can affect the
 * portal. Palette and type are matched to the Launch page by hand.
 */

:root {
  --ink: #0f172a;
  --ink-2: #1e293b;
  --slate: #475569;
  --muted: #64748b;
  --line: #e2e8f0;
  --line-soft: #f1f5f9;
  --surface: #ffffff;
  --canvas: #f6f8fb;
  --sky: #0ea5e9;
  --sky-dark: #0284c7;
  --sky-soft: #f0f9ff;
  --sky-line: #bae6fd;
  --green: #059669;
  --green-soft: #ecfdf5;
  --amber: #b45309;
  --amber-soft: #fffbeb;
  --red: #b91c1c;
  --red-soft: #fef2f2;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
}

* { box-sizing: border-box; }

/*
 * An author `display: flex/grid/block` outranks the UA stylesheet's [hidden]
 * rule, so without this the portal's `el.hidden = true` toggles silently do
 * nothing to elements that carry a display of their own.
 */
[hidden] { display: none !important; }

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink-2);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  color: var(--ink);
  margin: 0;
  line-height: 1.25;
}

a { color: var(--sky-dark); }

/* ----------------------------------------------------------------- */
/* top bar                                                            */
/* ----------------------------------------------------------------- */

.portal-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--ink);
  color: #e2e8f0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.portal-topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.portal-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #fff;
  margin-right: auto;
}

.portal-brand-title { display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.98rem; line-height: 1.15; }
.portal-brand-sub { display: block; font-size: 0.72rem; color: #7dd3fc; letter-spacing: 0.04em; text-transform: uppercase; }

.portal-nav { display: flex; align-items: center; gap: 0.35rem; flex-wrap: wrap; }

.portal-nav a,
.portal-nav button.linkish {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  background: none;
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

.portal-nav a:hover,
.portal-nav button.linkish:hover { background: rgba(148, 163, 184, 0.16); color: #fff; }
.portal-nav a.active { background: rgba(14, 165, 233, 0.18); color: #7dd3fc; }

.portal-user {
  font-size: 0.82rem;
  color: #94a3b8;
  padding-left: 0.7rem;
  border-left: 1px solid rgba(148, 163, 184, 0.25);
}

/* notification bell */
.bell-wrap { position: relative; }

.bell {
  position: relative;
  background: rgba(148, 163, 184, 0.14);
  border: 0;
  color: #e2e8f0;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}
.bell:hover { background: rgba(148, 163, 184, 0.28); }

.bell-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 18px;
}
.bell-count[hidden] { display: none; }

.notif-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.55rem);
  width: min(380px, calc(100vw - 2rem));
  max-height: 26rem;
  overflow-y: auto;
  background: #fff;
  color: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.22);
  padding: 0.4rem;
}
.notif-panel[hidden] { display: none; }

.notif-item {
  padding: 0.7rem 0.8rem;
  border-radius: 9px;
  border-bottom: 1px solid var(--line-soft);
}
.notif-item:last-child { border-bottom: 0; }
.notif-item.unread { background: var(--sky-soft); }
.notif-item strong { display: block; font-size: 0.88rem; color: var(--ink); }
.notif-item p { margin: 0.25rem 0 0; font-size: 0.83rem; color: var(--slate); white-space: pre-wrap; }
.notif-item time { display: block; margin-top: 0.3rem; font-size: 0.74rem; color: var(--muted); }

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

.portal-main { max-width: 1240px; margin: 0 auto; padding: 1.75rem 1.25rem 4rem; }

.portal-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.portal-head h1 { font-size: 1.6rem; }
.portal-head p { margin: 0.35rem 0 0; color: var(--muted); font-size: 0.92rem; max-width: 62ch; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.35rem;
  margin-bottom: 1.25rem;
}
.card > h2 { font-size: 1.08rem; margin-bottom: 0.2rem; }
.card > h2 + p { margin: 0 0 1rem; color: var(--muted); font-size: 0.9rem; }

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

/* ----------------------------------------------------------------- */
/* forms and buttons                                                  */
/* ----------------------------------------------------------------- */

.field { display: block; margin-bottom: 0.95rem; }
.field > span { display: block; margin-bottom: 0.3rem; font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.field .hint { display: block; margin-top: 0.3rem; font-size: 0.78rem; font-weight: 400; color: var(--muted); }

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="url"],
select,
textarea {
  width: 100%;
  padding: 0.62rem 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.94rem;
}

textarea { resize: vertical; min-height: 4.5rem; }

input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--sky);
  outline-offset: 1px;
  border-color: var(--sky);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 9px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn:disabled { opacity: 0.55; cursor: not-allowed; }

.btn-primary { background: var(--sky); color: #fff; }
.btn-primary:hover:not(:disabled) { background: var(--sky-dark); }

.btn-secondary { background: #fff; color: var(--ink); border-color: #cbd5e1; }
.btn-secondary:hover:not(:disabled) { background: var(--line-soft); }

.btn-danger { background: #fff; color: var(--red); border-color: #fecaca; }
.btn-danger:hover:not(:disabled) { background: var(--red-soft); }

.btn-block { width: 100%; }
.btn-sm { padding: 0.4rem 0.7rem; font-size: 0.82rem; }

.notice {
  padding: 0.7rem 0.95rem;
  border-radius: 9px;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.notice[hidden] { display: none; }
.notice-error { background: var(--red-soft); color: var(--red); }
.notice-ok { background: var(--green-soft); color: var(--green); }
.notice-info { background: var(--sky-soft); color: var(--sky-dark); border: 1px solid var(--sky-line); }

/* ----------------------------------------------------------------- */
/* sign-in page                                                       */
/* ----------------------------------------------------------------- */

.auth-wrap {
  min-height: calc(100vh - 62px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.25rem;
}
.auth-card {
  width: 100%;
  max-width: 430px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1.9rem;
}
.auth-card h1 { font-size: 1.4rem; margin-bottom: 0.3rem; }
.auth-card .lede { margin: 0 0 1.4rem; color: var(--muted); font-size: 0.92rem; }
.auth-alt { margin: 1.1rem 0 0; text-align: center; font-size: 0.86rem; color: var(--muted); }
.auth-alt button.linkish {
  background: none; border: 0; padding: 0; font: inherit;
  color: var(--sky-dark); cursor: pointer; text-decoration: underline;
}

/* ----------------------------------------------------------------- */
/* the sheet                                                          */
/* ----------------------------------------------------------------- */

.sheet-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }

table.sheet { width: 100%; border-collapse: collapse; min-width: 900px; font-size: 0.9rem; }

table.sheet th {
  text-align: left;
  padding: 0.65rem 0.75rem;
  background: var(--line-soft);
  border-bottom: 1px solid var(--line);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate);
  white-space: nowrap;
}

table.sheet td { padding: 0.3rem 0.4rem; border-bottom: 1px solid var(--line-soft); vertical-align: middle; }
table.sheet tbody tr:hover { background: #fbfdff; }

table.sheet td input,
table.sheet td select {
  border-color: transparent;
  background: transparent;
  padding: 0.45rem 0.5rem;
  font-size: 0.9rem;
}
table.sheet td input:hover,
table.sheet td select:hover { border-color: var(--line); background: #fff; }
table.sheet td input:focus,
table.sheet td select:focus { background: #fff; }

table.sheet td.row-num { width: 42px; text-align: center; color: var(--muted); font-size: 0.8rem; font-variant-numeric: tabular-nums; }
table.sheet td.row-actions { width: 46px; text-align: center; }
table.sheet .col-qty { width: 110px; }
table.sheet .col-brand { width: 150px; min-width: 130px; }
table.sheet .col-ship { width: 210px; }
table.sheet .col-title { min-width: 240px; }
table.sheet .col-link { min-width: 280px; }

tr.row-invalid td { background: var(--red-soft); }

.row-remove {
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.3rem 0.45rem;
  border-radius: 6px;
}
.row-remove:hover { background: var(--red-soft); color: var(--red); }

.sheet-toolbar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.9rem;
}
.sheet-toolbar .spacer { margin-left: auto; }
.save-state { font-size: 0.82rem; color: var(--muted); }

/* read-only view of a submitted sheet */
table.sheet td.readonly-cell { padding: 0.7rem 0.75rem; white-space: nowrap; }
.note-cell { max-width: 320px; white-space: normal; }
.note-cell p { margin: 0; font-size: 0.85rem; color: var(--slate); white-space: pre-wrap; }
.note-cell time { font-size: 0.74rem; color: var(--muted); }

/* ----------------------------------------------------------------- */
/* lists, pills, tables                                               */
/* ----------------------------------------------------------------- */

.status-pill {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pill-draft { background: var(--line-soft); color: var(--slate); }
.pill-submitted { background: var(--sky-soft); color: var(--sky-dark); }
.pill-waiting_payment { background: #fff7ed; color: #c2410c; }
.pill-in_review { background: #eef2ff; color: #4338ca; }
.pill-ordered { background: var(--amber-soft); color: var(--amber); }
.pill-shipped { background: #f5f3ff; color: #6d28d9; }
.pill-awaiting_invoice { background: #fff7ed; color: #c2410c; }
.pill-invoice_sent { background: #eef2ff; color: #4338ca; }
.pill-completed { background: var(--green-soft); color: var(--green); }
.pill-cancelled { background: var(--red-soft); color: var(--red); }
.pill-pending { background: var(--line-soft); color: var(--slate); }
.pill-sourcing { background: var(--sky-soft); color: var(--sky-dark); }
.pill-issue { background: var(--amber-soft); color: var(--amber); }
.pill-unavailable { background: var(--red-soft); color: var(--red); }
.pill-complete { background: var(--green-soft); color: var(--green); }

table.data { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
table.data th {
  text-align: left;
  padding: 0.6rem 0.7rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  white-space: nowrap;
}
table.data td { padding: 0.75rem 0.7rem; border-bottom: 1px solid var(--line-soft); vertical-align: middle; }
table.data tbody tr:hover { background: #fbfdff; }
table.data .stack { display: block; }
table.data .stack small { display: block; color: var(--muted); font-size: 0.8rem; }

.empty {
  padding: 2.5rem 1rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.filter-row { display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; }
.filter-row select { width: auto; min-width: 170px; }

.meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}
.meta-grid div { background: var(--line-soft); border-radius: 10px; padding: 0.7rem 0.85rem; }
.meta-grid dt { font-size: 0.73rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.meta-grid dd { margin: 0.2rem 0 0; font-size: 0.92rem; font-weight: 600; color: var(--ink); word-break: break-word; }

/* ----------------------------------------------------------------- */
/* dialog + toast                                                     */
/* ----------------------------------------------------------------- */

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(15, 23, 42, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.3);
  max-height: 90vh;
  overflow-y: auto;
}
.modal h2 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.modal .lede { margin: 0 0 1.1rem; color: var(--muted); font-size: 0.88rem; }
.modal-actions { display: flex; gap: 0.6rem; justify-content: flex-end; margin-top: 1.1rem; flex-wrap: wrap; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 70;
  background: var(--ink);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: 10px;
  font-size: 0.88rem;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.3);
}
.toast[hidden] { display: none; }

.loading { padding: 2rem 1rem; text-align: center; color: var(--muted); font-size: 0.9rem; }

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

@media (max-width: 860px) {
  .portal-topbar-inner { flex-wrap: wrap; gap: 0.6rem; }
  .portal-user { display: none; }
  .portal-main { padding: 1.25rem 0.9rem 3rem; }
  .card { padding: 1.1rem; }
  table.data { min-width: 620px; }
  .table-scroll { overflow-x: auto; }
}

/* ----------------------------------------------------------------- */
/* delivery confirmation                                              */
/* ----------------------------------------------------------------- */

.confirm-card { border-color: var(--sky-line); background: linear-gradient(180deg, var(--sky-soft), #fff 60%); }

.confirm-checks { display: grid; gap: 0.55rem; margin: 0 0 1rem; }

.confirm-check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: 0.92rem;
  cursor: pointer;
}
.confirm-check:hover { border-color: var(--sky-line); }
.confirm-check input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--sky);
  cursor: pointer;
}
.confirm-check strong { display: block; color: var(--ink); font-size: 0.92rem; }
.confirm-check small { display: block; color: var(--muted); font-size: 0.82rem; line-height: 1.5; }

.confirm-done {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  background: var(--green-soft);
  color: #065f46;
  font-size: 0.9rem;
}
.confirm-done .tick { font-size: 1.1rem; line-height: 1; }

/* ----------------------------------------------------------------- */
/* product line conversations                                         */
/* ----------------------------------------------------------------- */

tr.row-awaiting td { background: var(--amber-soft); }

.awaiting-tag {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: #fde68a;
  color: #92400e;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

tr.thread-row td { padding: 0 0.4rem 0.9rem; border-bottom: 1px solid var(--line-soft); background: #fbfdff; }

.thread {
  border-left: 3px solid var(--sky-line);
  padding: 0.15rem 0 0.15rem 0.9rem;
  white-space: normal;
}

.msg { margin-bottom: 0.7rem; font-size: 0.88rem; }
.msg:last-child { margin-bottom: 0; }
.msg strong { color: var(--ink); font-size: 0.84rem; }
.msg p { margin: 0.2rem 0 0; color: var(--slate); white-space: pre-wrap; }
.msg time { display: block; margin-top: 0.15rem; font-size: 0.73rem; color: var(--muted); }
.msg-member strong { color: var(--sky-dark); }

.msg-action {
  display: inline-block;
  margin-left: 0.45rem;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: var(--sky-soft);
  color: var(--sky-dark);
  font-size: 0.75rem;
  font-weight: 700;
}

.thread-reply {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px dashed var(--line);
}
.thread-reply select { width: auto; min-width: 190px; flex: 0 0 auto; }
.thread-reply input { flex: 1 1 220px; min-width: 180px; }

.awaiting-line { margin: 0.6rem 0 0; font-size: 0.82rem; color: var(--amber); font-weight: 600; }

/* Products held here, once Amazon has approved the member on them. */
.ungate-box {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px dashed var(--line);
}
.ungate-box .ungate-label { font-size: 0.85rem; font-weight: 600; color: var(--ink); flex: 0 0 auto; }
.ungate-box select { width: auto; min-width: 250px; flex: 0 0 auto; }

.ungated-tag {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.dispatch-tag {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}
.dispatch-send { background: #dcfce7; color: #15803d; }
.dispatch-hold { background: #fef3c7; color: #92400e; }

/* ----------------------------------------------------------------- */
/* files attached to an order                                         */
/* ----------------------------------------------------------------- */

.file-list { list-style: none; margin: 0; padding: 0; }

.file-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.file-row:last-child { border-bottom: 0; }
.file-row .file-meta { flex: 1 1 220px; min-width: 0; }
.file-row .file-meta strong { display: block; font-size: 0.9rem; color: var(--ink); word-break: break-word; }
.file-row .file-meta small { display: block; margin-top: 0.15rem; font-size: 0.78rem; color: var(--muted); }

.file-kind {
  flex: 0 0 auto;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.file-kind-invoice { background: #eef2ff; color: #4338ca; }
.file-kind-document { background: var(--line-soft); color: var(--slate); }

.file-upload {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
}
.file-upload[hidden] { display: none; }
.file-upload select { width: auto; min-width: 160px; }

/* ----------------------------------------------------------------- */
/* reorder reminders                                                  */
/* ----------------------------------------------------------------- */

.reminder-list { list-style: none; margin: 0; padding: 0; }

.reminder-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.reminder-row:last-child { border-bottom: 0; }

.reminder-row .reminder-when {
  flex: 0 0 auto;
  min-width: 120px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--slate);
}
.reminder-row.reminder-due .reminder-when { color: var(--amber); }

.reminder-row .reminder-what { flex: 1 1 240px; min-width: 0; }
.reminder-row .reminder-what strong { display: block; font-size: 0.9rem; color: var(--ink); word-break: break-word; }
.reminder-row .reminder-what small { display: block; margin-top: 0.15rem; font-size: 0.78rem; color: var(--muted); }
.reminder-row .reminder-what a { display: inline-block; margin-top: 0.2rem; font-size: 0.8rem; }

.reminder-form {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
}
.reminder-form select { width: 100%; }

.days-input { display: flex; align-items: center; gap: 0.45rem; }
.days-input input { width: 90px; }
.days-input span { font-size: 0.85rem; color: var(--muted); }

#reminderDue { margin: 0.6rem 0 0; font-size: 0.8rem; color: var(--muted); }

/* Numbered setup instructions, for a binding only a person can add. */
.setup-steps { margin: 0.6rem 0 0; padding-left: 1.2rem; font-size: 0.88rem; color: var(--slate); }
.setup-steps li { margin-bottom: 0.35rem; }
.setup-steps code {
  padding: 0.1rem 0.35rem;
  border-radius: 5px;
  background: rgba(15, 23, 42, 0.07);
  font-size: 0.85em;
}
