/* ==========================================================================
   components/timeline.css — vertical activity timeline
   ========================================================================== */

/* ---- Activity timeline (edit page) ---- */
.timeline { position: relative; padding: 1rem 0; }

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 1.25rem;
}
.timeline-item::before {
    content: "";
    position: absolute;
    left: 17px;
    top: 36px;
    bottom: -1.25rem;
    width: 2px;
    background: var(--crm-border);
}
.timeline-item:last-child::before { display: none; }

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    border: 1px solid var(--crm-border);
    background: var(--crm-surface-alt);
    color: var(--crm-text-secondary);
}

.timeline-content {
    padding-bottom: 1.125rem;
    border-bottom: 1px dashed var(--crm-border);
}
.timeline-item:last-child .timeline-content { border-bottom: 0; }

