Wizard Step Indicators
.wizard-steps {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step-wrapper {
    flex: 1;
    text-align: center;
    z-index: 2;
}

.step-indicator {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: lightgray;
    line-height: 50px;
    color: white;
    font-weight: bold;
    margin: 0 auto;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    transition: background 0.3s;
}

.step-indicator.active {
    background: blue;
}

.step-indicator.completed {
    background: #598556;
}

.step-label {
    margin-top: 6px;
    font-size: 0.9rem;
}

/* Garis belakang step */
.step-line {
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 4px;
    background: lightgray;
    z-index: 1;
    border-radius: 2px;
}

.step-line-active {
    position: absolute;
    top: 25px;
    left: 0;
    height: 4px;
    background: #598556;
    z-index: 1;
    border-radius: 2px;
    transition: width 0.3s;
}

/* -------------------------- */
/* Mobile view <= 576px */
/* -------------------------- */
@media (max-width: 576px) {
    .step-indicator {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 1rem;
    }

    .step-label {
        font-size: 0.75rem;
        margin-top: 4px;
    }

    .step-line,
    .step-line-active {
        top: 17.5px;
        height: 3px;
    }
}

/* -------------------------- */
/* Extra small mobile <= 375px */
/* -------------------------- */
@media (max-width: 375px) {
    .step-indicator {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 0.9rem;
    }

    .step-label {
        font-size: 0.65rem;
        margin-top: 3px;
    }

    .step-line,
    .step-line-active {
        top: 15px;
        height: 2.5px;
    }
}



@media (max-width: 320px) {
    .step-indicator {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 0.9rem;
    }

    .step-label {
        font-size: 0.5rem;
        margin-top: 3px;
    }

    .step-line,
    .step-line-active {
        top: 15px;
        height: 2.5px;
    }
}
