:root {
  color-scheme: light dark;
  --ink: #1b1b1f;
  --paper: #fbfbfd;
  --line: #c9c9d2;
  --muted: #555562;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #ececf1;
    --paper: #16161a;
    --line: #4c4c56;
    --muted: #c2c2ca;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  padding: 3rem 1.5rem 1.5rem;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.6 system-ui, -apple-system, "Segoe UI", sans-serif;
}

.hours-page,
footer {
  width: min(100%, 38rem);
  margin-inline: auto;
}

h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.15;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

caption {
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-align: left;
}

th,
td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--line);
}

thead th {
  border-top: 1px solid var(--line);
}

tbody th {
  font-weight: 600;
}

footer {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}
