/* ---------------------------------------------------------
   Homework Mode — design tokens
   --------------------------------------------------------- */
:root {
  --bg: #F5F8FF;
  --bg-card: #FFFFFF;
  --bg-soft: #E8EEFB;
  --ink: #0F172A;
  --ink-muted: #5B6472;
  --ink-soft: #94A3B8;
  --accent: #1D4ED8;
  --accent-soft: #E1EAFF;
  --good: #1D4ED8;
  --good-soft: #E1EAFF;
  --bad: #DC2626;
  --bad-soft: #FEE2E2;
  --border: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: "Iowan Old Style", "Palatino", "Georgia", "Charter", serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

a { color: var(--ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent); }

img { max-width: 100%; display: block; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ---------------------------------------------------------
   Navigation
   --------------------------------------------------------- */
.nav {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.nav-logo em { font-style: italic; color: var(--accent); font-weight: 500; }
.nav-logo-mark { width: 28px; height: 28px; display: block; flex-shrink: 0; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { text-decoration: none; font-size: 14px; color: var(--ink); font-weight: 500; }
.nav-links a:hover { color: var(--accent); }
.nav-links a.btn { color: #fff; }
.nav-links a.btn:hover { color: #fff; }

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.05s ease, background 0.15s ease;
}
.btn:hover { background: #1740B0; border-color: #1740B0; color: #fff; }
.btn:active { transform: translateY(1px); }

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-secondary:hover { background: var(--accent-soft); color: var(--accent); }

.btn-danger {
  background: var(--bad);
  border-color: var(--bad);
  color: #fff;
}
.btn-danger:hover { background: #B91C1C; border-color: #B91C1C; color: #fff; }

.btn-install { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-install:hover { background: #1740B0; border-color: #1740B0; color: #fff; }

.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-lg { padding: 17px 32px; font-size: 17px; }

.btn-google {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border-strong);
}
.btn-google:hover { background: var(--bg); color: var(--ink); }

.cta-subtle {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 12px;
  font-style: italic;
}

/* ---------------------------------------------------------
   Eyebrow + headings
   --------------------------------------------------------- */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

h1, h2, h3 { font-family: var(--font-serif); line-height: 1.1; letter-spacing: -0.015em; margin: 0 0 16px; font-weight: 600; }
h1 { font-size: clamp(40px, 6vw, 72px); }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: 22px; }
.italic-accent { font-style: italic; color: var(--accent); font-weight: 500; }

p { margin: 0 0 14px; }
.lead { font-size: 18px; color: var(--ink-muted); max-width: 560px; }

/* ---------------------------------------------------------
   Sections
   --------------------------------------------------------- */
section { padding: 80px 0; }
section.tight { padding: 56px 0; }
.section-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 12px;
}

.hero { padding: 60px 0 80px; }
.hero-inner { max-width: 760px; }
.hero h1 { margin-bottom: 20px; }
.hero .lead { margin-bottom: 28px; font-size: 19px; }

/* ---------------------------------------------------------
   "How it works" steps
   --------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.steps.steps-2 { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  border-radius: 50%;
  margin-bottom: 14px;
}
.step h3 { font-family: var(--font-sans); font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--ink-muted); margin: 0; line-height: 1.6; }

/* ---------------------------------------------------------
   "How it works" checklist (vertical)
   --------------------------------------------------------- */
.steps-list {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: flex;
  flex-direction: column;
  max-width: 560px;
}
.steps-list li {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.steps-list li:last-child { border-bottom: none; }
.steps-list .step-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  border-radius: 50%;
  margin-top: 2px;
}
.steps-list h3 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 4px;
}
.steps-list p {
  font-size: 14px;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.6;
}

/* ---------------------------------------------------------
   Safety & privacy checklist
   --------------------------------------------------------- */
.safety-points {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  max-width: 640px;
}
.safety-points li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 16px;
}
.safety-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--good);
  font-weight: 700;
}

/* ---------------------------------------------------------
   WSJ pull-quote
   --------------------------------------------------------- */
.pull-quote {
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  margin: 24px 0;
}
.pull-quote .quote-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 10px;
}
.pull-quote .quote-source { font-size: 13px; color: var(--ink-muted); }
.pull-quote .quote-source a { color: var(--ink-muted); }

/* ---------------------------------------------------------
   Confrontational section
   --------------------------------------------------------- */
.confront p { font-size: 17px; color: var(--ink); margin-bottom: 18px; max-width: 680px; }
.confront p strong { font-weight: 600; }
.confront .punchline {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.35;
  color: var(--ink);
  padding-left: 18px;
  border-left: 3px solid var(--accent);
  margin: 28px 0;
}

/* ---------------------------------------------------------
   Win-win
   --------------------------------------------------------- */
.win-win {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.win-win h2 { margin-bottom: 18px; }
.win-win p { color: var(--ink-muted); font-size: 16px; }
.win-win ul { padding-left: 18px; margin: 0; color: var(--ink); }
.win-win li { margin-bottom: 8px; }

/* ---------------------------------------------------------
   Pricing
   --------------------------------------------------------- */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.price-card.featured { border: 2px solid var(--accent); }
.price-card .badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 500;
}
.price-card .price {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.price-card .price-unit { font-size: 16px; color: var(--ink-muted); }
.price-card .plan-name { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 8px; }
.price-card .savings { font-size: 13px; color: var(--good); font-weight: 500; margin-top: 6px; }
.price-card ul { padding-left: 18px; margin: 18px 0 0; font-size: 14px; color: var(--ink-muted); }
.price-card li { margin-bottom: 6px; }

/* ---------------------------------------------------------
   Learn index + articles
   --------------------------------------------------------- */
.article-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: flex;
  flex-direction: column;
}
.article-list li { border-bottom: 1px solid var(--border); }
.article-list li:last-child { border-bottom: none; }
.article-list a {
  display: block;
  padding: 24px 0;
  text-decoration: none;
}
.article-list h2,
.article-list h3 {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--ink);
}
.article-list a:hover h2,
.article-list a:hover h3 { color: var(--accent); }
.article-list p { font-size: 15px; color: var(--ink-muted); margin: 0; }

.article-cluster { margin-top: 40px; }
.article-cluster:first-of-type { margin-top: 24px; }
.article-cluster-title {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  margin: 0;
}
.article-cluster .article-list { margin-top: 0; }

.related-guides {
  margin-top: 48px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.related-guides h2 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin: 24px 0 0;
}
.related-guides .article-list { margin-top: 8px; }

.article-crumb { margin-bottom: 20px; font-size: 14px; }
.article-crumb a { color: var(--ink-muted); text-decoration: none; }
.article-crumb a:hover { color: var(--accent); }

.article h1 { font-size: clamp(32px, 5vw, 46px); margin-bottom: 18px; }
.article-lead { max-width: 640px; margin-bottom: 28px; }

.article-body { font-size: 17px; color: var(--ink); line-height: 1.7; }
.article-body h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  margin: 36px 0 14px;
}
.article-body h3 {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 600;
  margin: 28px 0 10px;
}
.article-body p { margin: 0 0 16px; color: var(--ink); }
.article-body ul, .article-body ol { margin: 0 0 16px; padding-left: 22px; }
.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--accent); }
.article-body strong { font-weight: 600; }

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}
.article-body th, .article-body td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.article-body thead th {
  font-weight: 600;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-strong);
}
.article-body tbody td:first-child { font-weight: 500; color: var(--ink-muted); }

.article-cta {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin: 48px 0 0;
  text-align: center;
}
.article-cta h2 { font-size: 26px; margin-bottom: 10px; }
.article-cta p { color: var(--ink-muted); margin-bottom: 22px; }
.article-cta-top {
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.article-cta-top .cta-subtle { margin-top: 0; }

/* ---------------------------------------------------------
   FAQ (homepage)
   --------------------------------------------------------- */
.faq-list { max-width: 720px; margin-top: 28px; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-weight: 400;
  font-size: 22px;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0 0 16px;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 640px;
}

/* ---------------------------------------------------------
   Comparison table (homepage)
   --------------------------------------------------------- */
.compare {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
  font-size: 15px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare th, .compare td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.compare thead th { font-weight: 600; background: var(--bg-soft); }
.compare thead th.col-us { color: var(--accent); }
.compare tbody td:first-child { color: var(--ink-muted); }
.compare tr:last-child td { border-bottom: none; }
.compare .yes { color: var(--good); font-weight: 600; }
.compare .no { color: var(--ink-soft); }

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  font-size: 13px;
  color: var(--ink-muted);
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--ink-muted); text-decoration: none; }
.footer-links a:hover { color: var(--ink); }

/* ---------------------------------------------------------
   Dashboard
   --------------------------------------------------------- */
.dashboard-header {
  padding: 24px 0 0;
}
.dashboard-header h1 {
  font-size: 32px;
  margin: 0;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 16px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.card h2 {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  margin-bottom: 18px;
}
.status-pill {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.status-pill.good { background: var(--good-soft); color: var(--good); }
.status-pill.bad { background: var(--bad-soft); color: var(--bad); }
.status-pill.warn { background: #FAEEDA; color: #854F0B; }

.big-status {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 4px;
}
.big-status.on { color: var(--good); }
.big-status.off { color: var(--ink-muted); }
.muted { color: var(--ink-muted); font-size: 14px; }

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
}

.conn-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.45;
}
.conn-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 4px;
}
.conn-dot.on  { background: var(--good); }
.conn-dot.off { background: var(--ink-soft); }
.conn-seen { color: var(--ink-soft); }

.trouble {
  margin-top: 14px;
  font-size: 13px;
}
.trouble summary {
  cursor: pointer;
  list-style: none;
  color: var(--ink-muted);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.trouble summary::-webkit-details-marker { display: none; }
.trouble summary:hover { color: var(--ink); }
.trouble p {
  margin: 10px 0 10px;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.55;
  max-width: 480px;
}

/* Toggle switch */
.switch { position: relative; display: inline-block; width: 56px; height: 30px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; inset: 0; background: #C7C7C7; transition: 0.2s; border-radius: 999px; }
.slider:before { position: absolute; content: ""; height: 24px; width: 24px; left: 3px; top: 3px; background: #fff; transition: 0.2s; border-radius: 50%; box-shadow: var(--shadow-sm); }
.switch input:checked + .slider { background: var(--good); }
.switch input:checked + .slider:before { transform: translateX(26px); }

.log-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.log-table th, .log-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.log-table th {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.log-table tr:last-child td { border-bottom: none; }
.log-table td.title-cell { max-width: 320px; }
.log-table td.title-cell .title { font-weight: 500; color: var(--ink); }
.log-table td.title-cell .url { font-size: 12px; color: var(--ink-soft); margin-top: 2px; word-break: break-all; }
.log-table td.reason { font-size: 13px; color: var(--ink-muted); max-width: 260px; }

.filter-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.filter-row a {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  background: var(--bg-soft);
  color: var(--ink);
  text-decoration: none;
}
.filter-row a.active { background: var(--accent); color: #fff; }

.pagination { display: flex; gap: 8px; margin-top: 18px; justify-content: center; font-size: 14px; }
.pagination a, .pagination span { padding: 6px 12px; border-radius: var(--radius-sm); color: var(--ink-muted); text-decoration: none; }
.pagination a:hover { background: var(--bg-soft); color: var(--ink); }
.pagination .current { background: var(--accent); color: #fff; }

.dash-section { margin-top: 36px; }
.dash-section .card { padding: 0; overflow: hidden; }
.dash-section .card-inner { padding: 28px; }
.dash-section table { margin-top: 0; }
.dash-section table th, .dash-section table td { padding: 14px 28px; }

.whitelist-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.whitelist-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.whitelist-list li:last-child { border-bottom: none; }
.whitelist-list .title { font-size: 14px; color: var(--ink); font-weight: 500; }
.whitelist-list .url { font-size: 12px; color: var(--ink-soft); margin-top: 2px; word-break: break-all; }

.empty-state { padding: 40px 28px; text-align: center; color: var(--ink-muted); }

form.inline { display: inline; }

.messages {
  position: fixed; top: 16px; right: 16px;
  display: flex; flex-direction: column; gap: 8px;
  z-index: 99;
}
.messages .msg {
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  box-shadow: var(--shadow-md);
}
.messages .msg.error { background: var(--bad); }
.messages .msg.success { background: var(--good); }

/* ---------------------------------------------------------
   Welcome / onboarding card (shown once after first sign-in)
   --------------------------------------------------------- */
.welcome-card {
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 16px;
  margin-bottom: 4px;
}
.welcome-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.welcome-title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.welcome-dismiss {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1;
  padding: 2px 4px;
}
.welcome-dismiss:hover { color: var(--ink); }

.welcome-steps {
  margin: 0 0 14px;
  padding-left: 22px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.8;
}
.welcome-steps li { margin-bottom: 4px; }
.welcome-steps a { color: var(--accent); font-weight: 500; }

.welcome-hint {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 800px) {
  .steps, .win-win, .pricing-cards, .dashboard-grid { grid-template-columns: 1fr; }
  .win-win { padding: 32px 24px; }
  .nav-links { gap: 12px; }
  .nav-links .nav-link-hide { display: none; }
  .log-table td.reason, .log-table th.reason { display: none; }
}
