/* Progress Navigation */
.sir-progress-nav {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding: 4px 0;
    -webkit-overflow-scrolling: touch;
}

.sir-progress-step {
    flex: 1;
    min-width: 120px;
    padding: 12px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.sir-progress-step:hover {
    border-color: #1a365d;
}

.sir-progress-step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #6b7280;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}

.sir-progress-step-label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sir-progress-step-bar {
    height: 3px;
    background: #e2e8f0;
    border-radius: 2px;
    margin-top: 6px;
    overflow: hidden;
}

.sir-progress-step-fill {
    height: 100%;
    background: #1a365d;
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Active Step */
.sir-progress-active {
    border-color: #1a365d;
    background: #f0f4f8;
}

.sir-progress-active .sir-progress-step-number {
    background: #1a365d;
    color: #fff;
}

.sir-progress-active .sir-progress-step-label {
    color: #1a365d;
}

/* Complete Step */
.sir-progress-complete .sir-progress-step-number {
    background: #276749;
    color: #fff;
}

.sir-progress-complete .sir-progress-step-fill {
    background: #276749;
}

.sir-progress-complete .sir-progress-step-label {
    color: #276749;
}

@media (max-width: 768px) {
    .sir-progress-step {
        min-width: 80px;
        padding: 8px 6px;
    }

    .sir-progress-step-label {
        font-size: 10px;
    }

    .sir-progress-step-number {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
}
