.week-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  cursor: pointer;
  border-left: 2px solid transparent;
  transition: all var(--transition-fast);
  width: 100%;
  text-align: left;
}

.week-item:hover,
.week-item--active {
  background-color: var(--bg-tertiary);
}

.week-item--active {
  border-left-color: var(--accent);
}

.week-item__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  width: 24px;
}

.week-item__title {
  font-size: 12px;
  color: var(--text-secondary);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.week-item--active .week-item__title {
  color: var(--text-primary);
  font-weight: 600;
}

.week-item__pct {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
}

.week-sparkline {
  display: flex;
  gap: 2px;
  align-items: flex-end;
  height: 12px;
}

.spark-bar {
  width: 3px;
  background-color: var(--border-strong);
  border-radius: 1px;
  min-height: 2px;
}

.spark-bar--done {
  background-color: var(--status-done);
}
