body {
  font-family: system-ui, sans-serif;
  margin: 0;
  padding: 1rem;
  max-width: 900px;
  margin-inline: auto;
}
header { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.nav { display: flex; align-items: center; gap: 1rem; }
.filters { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 1rem; }
.chip-group { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 2px solid var(--chip-color, #999);
  font-size: 0.85rem;
  cursor: pointer;
}
.error-banner {
  background: #fee;
  border: 1px solid #f99;
  color: #900;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}
.agenda-day {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.25rem;
}
.agenda-row {
  display: grid;
  grid-template-columns: 90px 1fr auto auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.5rem;
  border-radius: 6px;
  cursor: pointer;
}
.agenda-row:hover { background: #f5f5f5; }
.agenda-row.full { opacity: 0.55; }
.agenda-time { color: #666; font-variant-numeric: tabular-nums; }
.badge {
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  border: 2px solid var(--chip-color, #999);
  font-size: 0.75rem;
  white-space: nowrap;
}
.agenda-spots { font-size: 0.8rem; color: #555; white-space: nowrap; }
