.onrc-form-wrapper {
    max-width: 500px;
    margin: 20px auto;
    padding: 40px;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-family: sans-serif;
}

/* Vertikális Stepper */
.onrc-stepper {
    position: relative;
    padding-left: 40px;
}

.onrc-stepper::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 10px;
    bottom: 20px;
    width: 2px;
    background: #2563eb; /* Kék vonal */
}

.step-item {
    position: relative;
    margin-bottom: 25px;
}

/* Ikonok: Pipa vagy Kör */
.step-indicator {
    position: absolute;
    left: -40px;
    top: 0;
    width: 26px;
    height: 26px;
    background: #fff;
    border: 2px solid #2563eb;
    border-radius: 50%;
    z-index: 2;
}

.step-item.completed .step-indicator {
    background: #2563eb;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>');
    background-size: 18px;
    background-position: center;
    background-repeat: no-repeat;
}
/*
.step-item.active .step-indicator {
    border-width: 5px;
}
*/
.step-item.pending .step-indicator {
    background: #fff;
    border-color: #d1d5db;
}

.step-label {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}

.step-info-box {
    background: #f9fafb;
    padding: 15px;
    border-radius: 8px;
    font-size: 13px;
    margin: 10px 0;
}

/* Gombok és inputok */
.btn-continue {
    background: #000;
    color: #fff;
    padding: 12px 35px;
    border-radius: 8px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.btn-back {
    background: #fff;
    border: 1px solid #d1d5db;
    padding: 12px 25px;
    border-radius: 8px;
    margin-right: 15px;
}

.onrc-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
