/* assets/css/_phase-tracker.css */
#ispag-phase-tracker {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#ispag-phase-tracker .ispag-phase-tracker__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border: 1px solid var(--ispag-border-color, #e2e2e2);
    border-radius: var(--ispag-btn-border-radius, 6px);
    background: #fff;
}

#ispag-phase-tracker .ispag-phase-tracker__label {
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

#ispag-phase-tracker .ispag-phase-tracker__date {
    font-size: 12px;
    color: var(--ispag-muted-color, #888);
    font-weight: 400;
}

#ispag-phase-tracker .ispag-phase-tracker__status-select {
    border: 2px solid var(--status-color, #ccc);
    border-radius: var(--ispag-btn-border-radius, 6px);
    padding: 4px 8px;
    background: #fff;
    font-weight: 500;
}

#ispag-phase-tracker .ispag-phase-tracker__empty {
    color: var(--ispag-muted-color, #888);
    font-style: italic;
}

/* Timeline client */
#ispag-phase-timeline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

#ispag-phase-timeline .ispag-phase-timeline__step {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f2f2f2;
    color: var(--ispag-muted-color, #999);
    font-size: 13px;
}

#ispag-phase-timeline .ispag-phase-timeline__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

#ispag-phase-timeline .ispag-phase-timeline__step--done {
    background: var(--ispag-success-color, #00C875);
    color: #fff;
}

#ispag-phase-timeline .ispag-phase-timeline__step--current {
    background: var(--ispag-blue, #007DB4);
    color: #fff;
    font-weight: 600;
}

#ispag-phase-timeline .ispag-phase-timeline__step--future {
    background: #f2f2f2;
    color: var(--ispag-muted-color, #999);
}