/* Multi-step (wizard) support */
.iproof_multistep_progress{
    height: 6px;
    background: rgba(0,0,0,.08);
    border-radius: 999px;
    overflow: hidden;
    margin: 0 0 16px 0;
}
.iproof_multistep_progress_bar{
    height: 100%;
    width: 0%;
    background: currentColor;
    transition: width .2s ease;
}

.iproof_step_title{
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.iproof_step_nav{
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.iproof_step_nav button{
    border: 0;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    background: rgba(0,0,0,.08);
}

.iproof_step_nav button:hover{
    filter: brightness(0.98);
}
