/* ═══════════════════════════════════════════════════
   TIMELINE — ImportControl
   ═══════════════════════════════════════════════════ */

.timeline {
    position: relative;
    padding-left: var(--space-6);
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-subtle);
}

.timeline-item {
    position: relative;
    padding: var(--space-2-5) 0 var(--space-3);
}

.timeline-dot {
    position: absolute;
    left: calc(-1 * var(--space-6) + 2px);
    top: var(--space-3);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--brand-primary);
    border: 2px solid var(--surface-card);
    box-shadow: 0 0 0 2px var(--brand-muted);
}

.timeline-item.past .timeline-dot {
    background: var(--gray-300);
    box-shadow: none;
}

.timeline-date {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-bottom: var(--space-0-5);
    letter-spacing: 0.2px;
}

.timeline-event {
    font-weight: var(--weight-medium);
    font-size: 13px;
    color: var(--text-primary);
    line-height: var(--leading-normal);
}

.timeline-notes {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-top: var(--space-1);
    font-style: italic;
}
