/* Deliberately small. A starting point that reads as designed rather than as
   unstyled, without becoming a design system nobody asked for. */
:root {
  color-scheme: light dark;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --line: #e2e2e2;
  --bg: #ffffff;
  --accent: #2f6f4f;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #ededed;
    --muted: #9a9a9a;
    --line: #333333;
    --bg: #161616;
    --accent: #6cc39a;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font:
    16px/1.5 system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
}

main {
  max-width: 34rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

h1 {
  margin: 0 0 0.75rem;
  font-size: 2rem;
  letter-spacing: -0.02em;
}

.next {
  margin: 0.75rem 0 2rem;
  color: var(--muted);
}

.items {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.items li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.items li.soldout .name {
  color: var(--muted);
  text-decoration: line-through;
}

.items li .status {
  color: var(--muted);
  white-space: nowrap;
}

.empty {
  color: var(--muted);
}
