.wo-dialog.wo-dialog-wizard {
    max-width: 1200px;
}

.wo-stepper {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 4px 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(0, 51, 102, .35);
}

.wo-step {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 6px 12px 6px 8px;
    border-radius: 999px;
    cursor: pointer;
    user-select: none;
    transition: background .18s, color .18s;
    color: #4a6a8a;
}

.wo-step:hover {
    background: rgba(0, 212, 255, .06);
}

.wo-step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(0, 51, 102, .55);
    border: 1px solid rgba(0, 82, 153, .55);
    color: #6a8aa0;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .18s;
}

.wo-step-lbl {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
}

.wo-step.active {
    color: #00d4ff;
}

.wo-step.active .wo-step-num {
    background: linear-gradient(135deg, #003a66, #006699);
    border-color: #00d4ff;
    color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, .15);
}

.wo-step.done {
    color: #00ff88;
}

.wo-step.done .wo-step-num {
    background: rgba(0, 255, 136, .12);
    border-color: rgba(0, 255, 136, .55);
    color: #00ff88;
}

.wo-step.done .wo-step-num::before {
    content: "\2713";
    font-size: 13px;
}

.wo-step.done .wo-step-num span {
    display: none;
}

.wo-step-conn {
    flex: 1;
    height: 2px;
    background: rgba(0, 51, 102, .55);
    border-radius: 2px;
    transition: background .18s;
    min-width: 18px;
}

.wo-step-conn.done {
    background: linear-gradient(90deg, rgba(0, 255, 136, .65), rgba(0, 212, 255, .55));
}

.wo-step-panel {
    animation: wo-step-fade .22s ease-out;
}

@keyframes wo-step-fade {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.wo-step-title {
    font-size: 14px;
    font-weight: 700;
    color: #00d4ff;
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wo-step-hint {
    font-size: 11px;
    color: #5a7a9a;
    margin: 0 0 14px;
}

.wo-step-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 22px;
}

.wo-step-grid .wo-f-full {
    grid-column: 1 / -1;
}

@media (max-width: 720px) {
    .wo-step-grid {
        grid-template-columns: 1fr;
    }

    .wo-step-lbl {
        display: none;
    }

    .wo-stepper {
        gap: 4px;
    }
}

.wo-wizard-clist {
    max-height: 360px;
}

.wo-wizard-alist {
    max-height: 420px;
}

.wo-prev-btn {
    padding: 9px 18px;
    background: none;
    border: 1px solid rgba(0, 212, 255, .3);
    color: #8090a0;
    border-radius: 7px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.wo-prev-btn:hover {
    background: rgba(255, 255, 255, .05);
    color: #c0d8e8;
}

.wo-next-btn {
    padding: 9px 22px;
    background: linear-gradient(135deg, #003a66, #005599);
    color: #fff;
    border: 1px solid #00d4ff;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-left: auto;
}

.wo-next-btn:hover {
    background: linear-gradient(135deg, #005599, #0077cc);
    box-shadow: 0 0 12px rgba(0, 212, 255, .35);
}

.wo-step-summary {
    background: rgba(0, 212, 255, .06);
    border: 1px solid rgba(0, 212, 255, .25);
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 14px;
    font-size: 12px;
    color: #c0d8e8;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.wo-step-summary b {
    color: #00d4ff;
    font-weight: 700;
}
