/* Unified Progress Indicator Styles */
.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 2rem 0;
    padding: 0 40px;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: #e9ecef;
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 33.33%;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #6c757d;
    transition: all 0.3s ease;
}

.step-label {
    font-size: 14px;
    font-weight: 500;
    color: #6c757d;
    margin-top: 0.5rem;
}

/* Active state */
.step.active .step-icon {
    background: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}

.step.active .step-label {
    color: #856404;
}

/* Completed state */
.step.completed .step-icon {
    background: #28a745;
    border-color: #28a745;
    color: white;
}

.step.completed .step-label {
    color: #28a745;
}

/* Progress line for completed steps */
.step.completed + .step:not(.completed)::before {
    background: #28a745;
}

/* Interrupted state */
.step.interrupted .step-icon {
    background: #dc3545;
    border-color: #dc3545;
    color: white;
}

.step.interrupted .step-label {
    color: #dc3545;
}

/* Resume button styling */
.resume-button {
    margin-top: 1rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}
