﻿.progress-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
    flex: 1;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #999; /* Grey color */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-size: 16px;
    color: white;
}

.step.active .step-number {
    background-color: #007BFF; /* Blue background color */
}

.step-label {
    margin-top: 10px;
    font-size: 14px;
}

.step::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #ddd; /* Grey color */
    z-index: -1;
}

.step:first-child::before {
    left: 50%;
    width: 100%;
}

.step:last-child::before {
    width: 50%;
    left: 0;
}

.step.active::before {
    background-color: #ddd;
}
