.progress-container {
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
}

.progress-bar-steps {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.progress-bar-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #e0e0e0;
    transform: translateY(-50%);
    z-index: -1;
}

.progress-bar-steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.progress-bar-steps .step .step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e0e0e0;
    border: 4px solid #e0e0e0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: background-color 0.3s, border-color 0.3s;
}

.progress-bar-steps .step .step-label {
    margin-top: 8px;
    font-size: 12px;
    color: #757575;
}

.progress-bar-steps .step.active .step-circle {
    background-color: #4f46e5;
    border-color: #4f46e5;
}

.progress-bar-steps .step.active .step-label {
    color: #4f46e5;
    font-weight: bold;
}
