/* ===============================
   WORKFLOW AUDIT TIMELINE
   =============================== */

.workflow-timeline {
    width: 100%;
    margin-top: 12px;
}

.timeline-item {
    min-width: 60px;
}

.timeline-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.timeline-dot.completed {
    background-color: #198754; /* Bootstrap success */
}

.timeline-dot.current {
    background-color: #ffc107; /* Bootstrap warning */
    color: #000;
}

.timeline-dot.pending {
    background-color: #adb5bd; /* Bootstrap secondary */
}

.timeline-line {
    position: absolute;
    top: 14px;
    left: -50%;
    width: 100%;
    height: 4px;
    background-color: #dee2e6;
    z-index: 1;
}

.timeline-line.completed {
    background-color: #198754;
}

.timeline-label {
    margin-top: 6px;
    font-size: 12px;
    white-space: nowrap;
}

.timeline-date {
    font-size: 11px;
    color: #6c757d;
}

/* ===============================
   MOBILE RESPONSIVE
   =============================== */

@media (max-width: 768px) {

    .timeline-label {
        font-size: 10px;
    }

    .timeline-dot {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
}
