/* schedule.css */

.cfm-schedule__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.cfm-schedule__item {
  display: flex;
  gap: var(--space-2);
  align-items: center;
  font-size: var(--font-size-sm);
}

.cfm-schedule__item-bar {
  width: 3px;
  height: 24px;
  background: var(--color-border-subtle);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.cfm-schedule__item--now .cfm-schedule__item-bar { background: var(--color-accent-primary); }
.cfm-schedule__item--dj .cfm-schedule__item-bar { background: var(--color-accent-primary); opacity: 0.4; }
.cfm-schedule__item--network .cfm-schedule__item-bar { background: var(--color-border-subtle); }

.cfm-schedule__item-time {
  font-size: var(--font-size-xs);
  color: var(--color-fg-muted);
  font-weight: var(--font-weight-medium);
}

.cfm-schedule__item--now .cfm-schedule__item-time {
  color: var(--color-accent-primary);
}

.cfm-schedule__item-name {
  font-size: var(--font-size-sm);
  color: var(--color-fg-secondary);
}

.cfm-schedule__item--now .cfm-schedule__item-name {
  color: var(--color-fg-primary);
}

.cfm-schedule__item:not(.cfm-schedule__item--now) {
  opacity: 0.85;
}
