/* 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;
}

.summary .available {
  margin: 0 0 0.25rem;
  color: var(--muted);
}

.summary .cheapest {
  margin: 0 0 2rem;
  color: var(--muted);
}

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

.walkers li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
}

.walkers li .name {
  font-weight: 600;
}

.walkers li .rating,
.walkers li .availability {
  color: var(--muted);
}

/* Walkers who are not taking bookings are greyed out so the eye is drawn to
   those you can actually book. */
.walkers li.unavailable {
  color: var(--muted);
  opacity: 0.6;
}

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