.progress-body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 8vh;
}

/* Progress container */
.progress-container {
    position: relative;
    width: 90%;
    max-width: 600px;
}

/* Progress bar */
.progress-bare {
    --progress-width: 0%;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 5px;
    background-color: #e0e0e0;
    z-index: 1;
    transform: translateY(-50%);
}

.progress-bare::after {
    clear: both;
    content: '';
    position: absolute;
    height: 100%;
    /* width: 50%; */
    /* Sesuaikan progress */
    background-color: #4caf50;
    z-index: 999;
    width: var(--progress-width);
}

/* Steps container */
.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 3;
}

/* Step */
.step {
    width: 40px;
    height: 40px;
    background-color: #e0e0e0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #777;
    position: relative;
}

.step.completed {
    background-color: #4caf50;
    color: #fff;
}

.step.active {
    background-color: #fff;
    color: #4caf50;
    border: 2px solid #4caf50;
}

/* Responsiveness */
@media (max-width: 480px) {
    .progress-container {
        width: 100%;
    }

    .step {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .progress-bare {
        height: 3px;
    }
}