.progress-container {
    display: flex;
    align-items: center; /* Ensure alignment of all elements */
    justify-content: space-between;
}

.progress-step {
    width: 30px;
    height: 30px;
    background-color: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.progress-step::before {
    content: '';
    display: block;
    width: 10px; /* Smaller inner circle */
    height: 10px; /* Smaller inner circle */
    background-color: white;
    border-radius: 50%;
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the inner circle */
}

.progress-step-done {
    background-color: green;
}

.progress-step-done::before {
    background-color: #fff;
}

.progress-step.in-progress {
    background-color: orange;
}

.progress-step.in-progress::before {
    background-color: #fff;
}

.progress-line {
    height: 5px;
    flex-grow: 1;
    background-color: #ddd;
    position: relative;
    top: 60%;
    transform: translateY(-50%); /* Correctly center vertically */
    margin: 0 -15px; /* Half of the outer circle width */
}

.progress-line-done {
    background-color: green;
}

.progress-container::before,
.progress-container::after {
    content: '';
    width: 15px; /* Half of the outer circle width */
    flex-shrink: 0;
}
