/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0.875rem;
    top: 1rem;
    bottom: 1rem;
    width: 2px;
    background: #e5e7eb;
}

.timeline .timeline-item {
    position: relative;
    margin-bottom: 24px;
}

.timeline .timeline-marker {
    position: absolute;
    top: 1rem;
    left: -25px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e5e7eb;
}

.timeline  .timeline-marker.active {
    background: #000000;
    border-color: #000000;
}

.timeline  .timeline-marker.completed {
    background: #10b981;
    border-color: #10b981;
}

.timeline  .timeline-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.timeline  .timeline-title {
    font-weight: 500;
}

.timeline  .timeline-desc {
    font-size: 14px;
    color: #6b7280;
}

.timeline  .timeline-time {
    font-size: 13px;
    color: #6b7280;
    white-space: nowrap;
}
