/* Progress Steps Styles */
.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}
.progress-steps .step-label {
    flex: 1;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    color: #757575;
    position: relative;
    z-index: 2;
    transition: color 0.3s;
    white-space: nowrap;
}
.progress-steps .step-label.active {
    color: #2056e6;
    font-weight: bold;
}
.progress-steps .progress-bar-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 32px;
    height: 6px;
    background: #e0e3ea;
    border-radius: 3px;
    z-index: 1;
}
.progress-steps .progress-bar-fill {
    position: absolute;
    left: 0;
    top: 32px;
    height: 6px;
    background: #2056e6;
    border-radius: 3px;
    z-index: 2;
    transition: width 0.4s;
}

/* Responsive styles for mobile */
@media screen and (max-width: 600px) {
    .progress-steps {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 20px;
    }
    .progress-steps .step-label {
        font-size: 1rem;
        text-align: left;
        margin-bottom: 8px;
        white-space: normal;
    }
    .progress-steps .progress-bar-bg,
    .progress-steps .progress-bar-fill {
        top: unset;
        bottom: 0;
        height: 4px;
    }
    .progress-steps .progress-bar-bg,
    .progress-steps .progress-bar-fill {
        left: 0;
        right: 0;
        width: 100%;
    }
}
