.yhe-wizard .wizard-step-panel {
    display: none;
}

.yhe-wizard .wizard-step-panel.active {
    display: block;
}

.wizard-steps {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.wizard-step {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.75rem;
    border-radius: 1rem;
    background: #f8f9fa;
    border: 1px solid transparent;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.wizard-step.active {
    opacity: 1;
    background: #fff;
    border-color: #212529;
}

.wizard-step.completed {
    opacity: 1;
    background: #f6fff8;
    border-color: #198754;
}

.wizard-step-index {
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #e9ecef;
    color: #212529;
    font-weight: 700;
}

.wizard-step.active .wizard-step-index {
    background: #212529;
    color: #fff;
}

.wizard-step.completed .wizard-step-index {
    background: #198754;
    color: #fff;
}

.wizard-step-title {
    font-weight: 700;
    line-height: 1.2;
}

.wizard-step-text {
    font-size: 0.9rem;
    color: #6c757d;
}