/* filters */
#filters {
  display: flex;
  gap: 8px;
  margin: 12px 0;
}

#filters button {
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
}

#filters button.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* timeline */
#timeline {
  display: none;
  grid-template-columns: 80px 1fr;
  row-gap: 8px;
  column-gap: 12px;
  margin-top: 16px;
}

.slot {
  display: contents;
}

.time {
  font-weight: 600;
  color: #666;
  padding-top: 6px;
}

.events {
  min-height: 32px;
  padding-bottom: 6px;
}

.event {
  display: inline-block;
  background: #f3f3f3;
  padding: 6px 10px;
  margin-bottom: 6px;
}
