/* ============================================================
   West Tawakoni Police Department — shared site styles
   ============================================================ */

:root {
  --navy-950: #050d1a;
  --navy-900: #0a1930;
  --navy-800: #0f2140;
  --navy-700: #16305a;
  --navy-600: #1e3f73;
  --gold-400: #e6c569;
  --gold-500: #d4af37;
  --gold-600: #b8912a;
  --red-700: #7a1f2b;
  --cream-50: #faf8f3;
  --cream-100: #f3efe4;
  --ink-900: #16181c;
  --ink-600: #4b5160;
  --line: rgba(255, 255, 255, 0.12);
  --shadow-lg: 0 20px 50px -20px rgba(5, 13, 26, 0.5);
  --radius: 14px;
  --serif: "Playfair Display", "Georgia", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink-900);
  background: var(--cream-50);
  line-height: 1.6;
}

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  margin: 0 0 0.5em;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--navy-950);
  color: var(--cream-100);
  font-size: 13.5px;
  border-bottom: 1px solid var(--line);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { text-decoration: none; }
.topbar .emergency {
  color: #ff9a9a;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.topbar .links a {
  color: var(--gold-400);
  margin-left: 18px;
}
.topbar .links a:hover { text-decoration: underline; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
  border-bottom: 2px solid var(--gold-500);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--cream-50);
}
.brand img { height: 46px; width: 46px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px var(--gold-500); }
.brand .txt { display: flex; flex-direction: column; }
.brand .txt strong { font-family: var(--serif); font-size: 17px; letter-spacing: 0.02em; }
.brand .txt span { font-size: 11px; color: var(--gold-400); letter-spacing: 0.12em; text-transform: uppercase; }

.navlinks {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navlinks a {
  color: var(--cream-100);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .15s, color .15s;
}
.navlinks a:hover { border-color: var(--gold-500); color: var(--gold-400); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s, color .15s;
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -10px rgba(212,175,55,0.6); }
.btn-outline {
  background: transparent;
  border-color: var(--gold-500);
  color: var(--gold-400);
}
.btn-outline:hover { background: rgba(212,175,55,0.1); }
.btn-navy {
  background: var(--navy-900);
  color: var(--cream-50);
}
.btn-navy:hover { background: var(--navy-800); }
.btn-block { width: 100%; justify-content: center; }
.btn[disabled] { opacity: .6; cursor: not-allowed; transform: none !important; }

.navtoggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy-950);
}
.hero img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-caption {
  background: var(--navy-950);
  color: var(--cream-100);
  text-align: center;
  padding: 14px 20px;
  font-size: 14.5px;
  border-bottom: 1px solid var(--line);
}
.hero-caption strong { color: var(--gold-400); }

/* ---------- Quick actions ---------- */
.quick-actions {
  margin-top: -46px;
  position: relative;
  z-index: 5;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.quick-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 22px 20px;
  text-decoration: none;
  color: var(--ink-900);
  border-top: 4px solid var(--gold-500);
  transition: transform .15s;
}
.quick-card:hover { transform: translateY(-4px); }
.quick-card .icon { font-size: 26px; margin-bottom: 10px; }
.quick-card h3 { font-size: 16px; margin-bottom: 6px; }
.quick-card p { margin: 0; font-size: 13.5px; color: var(--ink-600); }

/* ---------- Sections ---------- */
section { padding: 80px 0; }
section.tight { padding: 56px 0; }
.section-alt { background: var(--cream-100); }
.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-700);
  font-weight: 700;
  margin-bottom: 10px;
}
.section-head { max-width: 700px; margin-bottom: 40px; }
.section-head h2 { font-size: 32px; color: var(--navy-900); }
.section-head p { color: var(--ink-600); font-size: 16px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.about-grid p { color: var(--ink-600); font-size: 15.5px; }
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.stat {
  background: var(--navy-900);
  color: var(--cream-50);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
}
.stat strong { display: block; font-family: var(--serif); font-size: 26px; color: var(--gold-400); }
.stat span { font-size: 12px; color: var(--cream-100); letter-spacing: .04em; text-transform: uppercase; }

.leader-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 12px 34px -18px rgba(10,25,48,0.35);
  padding: 26px;
  border-left: 4px solid var(--navy-900);
}
.leader-card .rank { color: var(--red-700); font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: .08em; }
.leader-card h3 { margin: 4px 0 2px; font-size: 22px; color: var(--navy-900); }
.leader-card p { color: var(--ink-600); font-size: 14.5px; margin: 0; }

/* ---------- News ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.news-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 30px -20px rgba(10,25,48,0.4);
  border: 1px solid rgba(10,25,48,0.06);
}
.news-card .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.tag-alert { background: #fde2e2; color: var(--red-700); }
.tag-event { background: #e4f0e6; color: #256a3a; }
.tag-lake_safety { background: #e3edf7; color: #1e4c8a; }
.tag-general { background: var(--cream-100); color: var(--navy-800); }
.news-card h3 { font-size: 18px; color: var(--navy-900); margin-bottom: 8px; }
.news-card p { font-size: 14.5px; color: var(--ink-600); margin: 0 0 10px; }
.news-card time { font-size: 12.5px; color: #94989f; }
.news-empty, .form-empty { color: var(--ink-600); font-style: italic; }

/* ---------- Resources ---------- */
.res-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.res-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 10px 30px -20px rgba(10,25,48,0.4);
}
.res-card .icon { font-size: 30px; margin-bottom: 12px; }
.res-card h3 { font-size: 18px; color: var(--navy-900); }
.res-card ul { padding-left: 18px; margin: 10px 0 0; color: var(--ink-600); font-size: 14.5px; }
.res-card li { margin-bottom: 6px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}
.contact-info h3 { color: var(--navy-900); font-size: 20px; }
.info-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(10,25,48,0.08);
}
.info-row .ic { font-size: 20px; width: 28px; }
.info-row strong { display: block; font-size: 14.5px; color: var(--navy-900); }
.info-row span, .info-row a { font-size: 14px; color: var(--ink-600); text-decoration: none; }

.card-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}
.card-form h3 { color: var(--navy-900); font-size: 20px; margin-bottom: 4px; }
.card-form .sub { color: var(--ink-600); font-size: 14px; margin-bottom: 20px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--navy-900); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 11px 13px;
  border-radius: 8px;
  border: 1px solid #d8d9de;
  font-family: var(--sans);
  font-size: 14.5px;
  background: var(--cream-50);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--gold-500);
  outline-offset: 1px;
}
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-msg { margin-top: 14px; font-size: 14px; padding: 10px 14px; border-radius: 8px; display: none; }
.form-msg.show { display: block; }
.form-msg.ok { background: #e4f0e6; color: #256a3a; }
.form-msg.err { background: #fde2e2; color: var(--red-700); }

/* ---------- Footer ---------- */
footer {
  background: var(--navy-950);
  color: var(--cream-100);
  padding: 50px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.footer-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.footer-brand img { height: 44px; width: 44px; border-radius: 50%; box-shadow: 0 0 0 2px var(--gold-500); }
.footer-brand strong { font-family: var(--serif); font-size: 16px; }
footer p { color: #9aa4b8; font-size: 14px; }
footer h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-400); margin-bottom: 14px; }
footer ul { list-style: none; margin: 0; padding: 0; }
footer li { margin-bottom: 10px; }
footer a { color: #cfd6e4; text-decoration: none; font-size: 14px; }
footer a:hover { color: var(--gold-400); }
.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: #7c86a0;
}

/* ---------- Portal ---------- */
.portal-shell { min-height: 100vh; display: flex; flex-direction: column; }
.portal-main { flex: 1; }

.login-wrap {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, var(--navy-800), var(--navy-950) 70%);
  padding: 40px 20px;
}
.login-card {
  background: #fff;
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  padding: 40px 34px;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.5);
  text-align: center;
}
.login-card img { height: 72px; width: 72px; border-radius: 50%; margin: 0 auto 16px; box-shadow: 0 0 0 3px var(--gold-500); }
.login-card h1 { font-size: 21px; color: var(--navy-900); margin-bottom: 2px; }
.login-card .sub { color: var(--ink-600); font-size: 13.5px; margin-bottom: 26px; }
.login-card .field { text-align: left; }
.login-note {
  margin-top: 20px;
  font-size: 12.5px;
  color: var(--ink-600);
  background: var(--cream-100);
  border-radius: 8px;
  padding: 10px 12px;
}

.portal-nav .container { justify-content: space-between; }
.officer-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream-100);
  font-size: 13.5px;
}
.officer-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ec97e; }

.portal-hero {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--cream-50);
  padding: 46px 0;
}
.portal-hero h1 { font-size: 28px; margin-bottom: 6px; }
.portal-hero p { color: var(--cream-100); margin: 0; }

.tabs {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid rgba(10,25,48,0.1);
  margin-bottom: 30px;
}
.tab-btn {
  background: none;
  border: none;
  padding: 12px 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-600);
  cursor: pointer;
  border-bottom: 3px solid transparent;
}
.tab-btn.active { color: var(--navy-900); border-color: var(--gold-500); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.list-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: 0 8px 24px -18px rgba(10,25,48,0.4);
  margin-bottom: 14px;
  border-left: 4px solid var(--navy-700);
}
.list-card.priority-urgent { border-left-color: var(--red-700); }
.list-card.priority-important { border-left-color: var(--gold-500); }
.list-card h3 { font-size: 16.5px; color: var(--navy-900); margin-bottom: 6px; }
.list-card p { font-size: 14px; color: var(--ink-600); margin: 0 0 8px; }
.list-card .meta { font-size: 12px; color: #94989f; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.badge-pill { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 2px 9px; border-radius: 999px; }
.badge-urgent { background: #fde2e2; color: var(--red-700); }
.badge-important { background: #fdf1d8; color: #8a6a10; }
.badge-normal { background: var(--cream-100); color: var(--navy-800); }

.form-row {
  background: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 8px 24px -18px rgba(10,25,48,0.4);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.form-row .meta-txt h3 { font-size: 15.5px; color: var(--navy-900); margin-bottom: 4px; }
.form-row .meta-txt p { font-size: 13.5px; color: var(--ink-600); margin: 0; }
.form-row .cat { font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--gold-600); font-weight: 700; }

.admin-panel {
  background: var(--cream-100);
  border-radius: 14px;
  padding: 26px;
  margin-top: 40px;
}
.admin-panel h3 { color: var(--navy-900); font-size: 18px; }
.admin-panel .sub { color: var(--ink-600); font-size: 13.5px; margin-bottom: 18px; }
.admin-two { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.admin-block { background: #fff; border-radius: 12px; padding: 20px; }
.admin-block h4 { font-size: 14.5px; color: var(--navy-900); margin-bottom: 14px; }

.skeleton { color: var(--ink-600); font-size: 14px; }

/* ---------- Portal: directory / tables / extras ---------- */
.simple-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 24px -18px rgba(10,25,48,0.4); }
.simple-table th, .simple-table td { padding: 12px 14px; text-align: left; font-size: 13.5px; border-bottom: 1px solid rgba(10,25,48,0.08); }
.simple-table th { background: var(--navy-900); color: var(--cream-100); font-size: 11.5px; text-transform: uppercase; letter-spacing: .05em; }
.simple-table tr:last-child td { border-bottom: none; }
.simple-table .row-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.btn-sm { padding: 6px 12px; font-size: 12.5px; border-radius: 999px; }
.pill-active { background: #e4f0e6; color: #256a3a; font-size: 10.5px; font-weight: 700; padding: 2px 9px; border-radius: 999px; text-transform: uppercase; }
.pill-inactive { background: #f0e4e4; color: #8a2c2c; font-size: 10.5px; font-weight: 700; padding: 2px 9px; border-radius: 999px; text-transform: uppercase; }

.folder-group { margin-bottom: 26px; }
.folder-group h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-600); margin-bottom: 10px; }

.check-row {
  background: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 6px 18px -14px rgba(10,25,48,0.4);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.check-row input[type=checkbox] { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--navy-800); }
.check-row .txt { flex: 1; }
.check-row .txt strong { font-size: 14.5px; color: var(--navy-900); display: block; }
.check-row .txt strong.done { text-decoration: line-through; color: #9aa0ab; }
.check-row .txt p { margin: 2px 0 0; font-size: 13px; color: var(--ink-600); }
.check-row .due { font-size: 12px; color: #94989f; white-space: nowrap; }

.section-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; flex-wrap: wrap; gap: 10px; }
.section-toolbar h3 { margin: 0; font-size: 18px; color: var(--navy-900); }
.tabs-scroll { overflow-x: auto; }
.tabs-scroll .tabs { flex-wrap: nowrap; }
.tabs-scroll .tab-btn { white-space: nowrap; }

/* ---------- Dropzone ---------- */
.dropzone {
  border: 2px dashed var(--gold-500);
  border-radius: 10px;
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  background: var(--cream-50);
  transition: background .15s, border-color .15s;
}
.dropzone.dragover { background: var(--cream-100); border-color: var(--navy-700); }
.dropzone .dz-icon { font-size: 20px; display: block; margin-bottom: 6px; }
.dropzone-label { font-size: 13.5px; color: var(--ink-600); word-break: break-all; }
.dropzone-hint { font-size: 12px; color: #9aa0ab; display: block; margin-top: 4px; }

/* ---------- Charts ---------- */
.charts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 30px; }
.chart-card { background: #fff; border-radius: 12px; padding: 20px; box-shadow: 0 8px 24px -18px rgba(10,25,48,0.4); }
.chart-card h4 { font-size: 14px; color: var(--navy-900); margin-bottom: 14px; }
.chart-card canvas { max-height: 320px; }

/* ---------- Policy manual details ---------- */
.list-card details { margin-top: 12px; }
.list-card summary { cursor: pointer; font-size: 13px; color: var(--ink-600); }
.list-card .simple-table { margin-top: 10px; }
.private-note { font-size: 13px; color: var(--ink-600); background: var(--cream-100); border-radius: 8px; padding: 10px 14px; margin-bottom: 18px; }

@media (max-width: 900px) {
  .charts-grid { grid-template-columns: 1fr; }
}

/* ---------- Calendar (month grid) ---------- */
.cal-toolbar { display: flex; align-items: center; justify-content: center; gap: 24px; margin: 8px 0 20px; }
.cal-toolbar h4 { margin: 0; font-size: 18px; color: var(--navy-900); min-width: 180px; text-align: center; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-weekday { font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-600); text-align: center; padding: 6px 0; font-weight: 700; }
.cal-day { background: #fff; border-radius: 8px; min-height: 96px; padding: 6px; box-shadow: 0 4px 12px -10px rgba(10,25,48,0.3); display: flex; flex-direction: column; gap: 3px; cursor: pointer; transition: box-shadow .15s; }
.cal-day:hover { box-shadow: 0 6px 16px -8px rgba(10,25,48,0.45); }
.cal-day.empty { background: transparent; box-shadow: none; cursor: default; }
.cal-day .day-num { font-size: 12px; font-weight: 700; color: var(--navy-900); }
.cal-day.today { border: 2px solid var(--gold-500); }
.cal-day.today .day-num { color: var(--gold-600); }
.cal-event-chip { font-size: 10.5px; background: var(--navy-900); color: #fff; padding: 2px 6px; border-radius: 5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cal-event-chip.more { background: var(--cream-100); color: var(--navy-800); font-weight: 700; }
.cal-day-detail { background: #fff; border-radius: 12px; padding: 20px; margin-top: 20px; box-shadow: 0 8px 24px -18px rgba(10,25,48,0.4); }

@media (max-width: 700px) {
  .cal-day { min-height: 64px; padding: 4px; }
  .cal-event-chip { font-size: 9px; }
  .cal-weekday { font-size: 9.5px; }
}

/* ---------- Bookmarks ---------- */
.bm-group { margin-bottom: 28px; }
.bm-cat-heading { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-600); margin: 0 0 10px; font-weight: 800; }
.bm-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.bm-card { background: #fff; border-radius: 12px; padding: 14px 16px; box-shadow: 0 4px 14px -10px rgba(10,25,48,0.3); display: flex; flex-direction: column; gap: 6px; }
.bm-card-top { display: flex; align-items: center; gap: 8px; }
.bm-favicon { width: 18px; height: 18px; border-radius: 4px; flex-shrink: 0; }
.bm-title { font-weight: 700; color: var(--navy-900); text-decoration: none; flex: 1; }
.bm-title:hover { text-decoration: underline; }
.bm-desc { font-size: 13px; color: var(--ink-600); margin: 0; }
.bm-link { font-size: 12px; color: var(--gold-600); text-decoration: none; word-break: break-all; }
.bm-link:hover { text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid, .admin-two { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .res-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .navlinks { display: none; }
  .topbar .links a:first-child { margin-left: 0; }
  .simple-table { display: block; overflow-x: auto; }
}
