/* Schedule panel */
.schedule-day-group { padding: 6px 0; }
.schedule-day-label { padding: 6px 16px; background: var(--bg-base); }  /* typography from .label-micro */
.schedule-time {
  display: inline-block;
  min-width: 72px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--accent);
  padding: 2px 7px;
  background: var(--accent-subtle);
  border-radius: var(--radius-sm);
  margin-right: 8px;
}

/* Schedule panel - timeline view (single day) */
.schedule-timeline-label {
  position: sticky; top: 0; z-index: 2;
  border-bottom: 1px solid var(--border-subtle);
}
.schedule-timeline {
  position: relative;
  margin: 0;
  height: calc(var(--rows, 18) * var(--hour-h, 44px));
  padding-left: 56px;
  padding-right: 12px;
}
.tl-hour {
  position: absolute;
  left: 0; right: 0;
  height: var(--hour-h, 44px);
  border-top: 1px solid var(--border-subtle);
}
.tl-hour:first-child { border-top: none; }
.tl-hour-label {
  position: absolute;
  left: 10px; top: -7px;
  background: var(--bg-surface);
  padding: 0 4px;
  font-size: 10.5px;
  font-family: var(--font-mono);
  color: var(--text-muted);
}
.tl-block {
  position: absolute;
  left: 56px; right: 12px;
  background: var(--accent-subtle);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  padding: 3px 8px;
  overflow: hidden;
  z-index: 1;
  transition: all var(--trans-fast);
}
.tl-block:hover {
  background: var(--accent-ring);
  z-index: 3;
}
.tl-block.done { opacity: 0.5; }
.tl-block.done .tl-block-title { text-decoration: line-through; }
.tl-block-time {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--accent);
  font-weight: 500;
}
.tl-block-title {
  font-size: 12.5px;
  color: var(--text-primary);
  margin-top: 1px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tl-block-loc {
  font-size: 10.5px;
  color: var(--text-muted);
  margin-left: 4px;
}
.tl-now {
  position: absolute;
  left: 48px; right: 12px;
  height: 2px;
  background: var(--error);
  z-index: 4;
  pointer-events: none;
}
.tl-now::before {
  content: '';
  position: absolute;
  left: -6px; top: -4px;
  width: 10px; height: 10px;
  background: var(--error);
  border-radius: 50%;
  box-shadow: 0 0 6px color-mix(in srgb, var(--error) 60%, transparent);
}
.tl-now-label {
  position: absolute;
  left: -48px; top: -8px;
  background: var(--error);
  color: white;
  font-size: 9.5px;
  font-family: var(--font-mono);
  padding: 1px 5px;
  border-radius: 3px;
  line-height: 1.4;
}

