    #wpcontent { padding-left: 0; }
    #wpbody-content > .notice,
    #wpbody-content > .error,
    #wpbody-content > .updated,
    #wpbody-content > .schema-ai-notice { display: none !important; }

    .sai-wizard {
        max-width: 700px;
        margin: 40px auto;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    }
    .sai-wizard-header {
        text-align: center;
        margin-bottom: 40px;
    }
    .sai-wizard-header h1 {
        font-size: 32px;
        font-weight: 700;
        color: #1e293b;
        margin: 0 0 8px;
    }
    .sai-wizard-header p {
        font-size: 16px;
        color: #64748b;
        margin: 0;
    }
    .sai-wizard-logo {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 16px;
    }
    .sai-wizard-logo .dashicons {
        font-size: 40px;
        width: 40px;
        height: 40px;
        color: #7c3aed;
    }

    /* Steps indicator */
    .sai-steps {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-bottom: 40px;
    }
    .sai-step-dot {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .sai-step-num {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 600;
        background: #e2e8f0;
        color: #64748b;
        transition: all 0.2s;
    }
    .sai-step-dot.active .sai-step-num {
        background: #7c3aed;
        color: #fff;
    }
    .sai-step-dot.completed .sai-step-num {
        background: #22c55e;
        color: #fff;
    }
    .sai-step-label {
        font-size: 13px;
        color: #64748b;
    }
    .sai-step-dot.active .sai-step-label {
        color: #1e293b;
        font-weight: 600;
    }
    .sai-step-line {
        width: 40px;
        height: 2px;
        background: #e2e8f0;
        margin: 0 4px;
        align-self: center;
    }

    /* Card */
    .sai-card {
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 40px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    }
    .sai-card h2 {
        font-size: 22px;
        font-weight: 700;
        color: #1e293b;
        margin: 0 0 8px;
    }
    .sai-card .sai-subtitle {
        font-size: 15px;
        color: #64748b;
        margin: 0 0 28px;
    }

    /* Register CTA */
    .sai-register-box {
        background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
        border: 2px solid #c4b5fd;
        border-radius: 10px;
        padding: 28px;
        text-align: center;
        margin-bottom: 28px;
    }
    .sai-register-box h3 {
        font-size: 18px;
        color: #5b21b6;
        margin: 0 0 8px;
    }
    .sai-register-box p {
        font-size: 14px;
        color: #6d28d9;
        margin: 0 0 16px;
    }
    .sai-btn-register {
        display: inline-block;
        background: #7c3aed;
        color: #fff !important;
        text-decoration: none;
        padding: 12px 32px;
        border-radius: 8px;
        font-size: 15px;
        font-weight: 600;
        transition: background 0.2s;
    }
    .sai-btn-register:hover {
        background: #6d28d9;
        color: #fff !important;
    }

    .sai-divider {
        display: flex;
        align-items: center;
        margin: 24px 0;
        color: #94a3b8;
        font-size: 13px;
    }
    .sai-divider::before,
    .sai-divider::after {
        content: "";
        flex: 1;
        height: 1px;
        background: #e2e8f0;
    }
    .sai-divider span {
        padding: 0 12px;
    }

    /* Form */
    .sai-field {
        margin-bottom: 20px;
    }
    .sai-field label {
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: #334155;
        margin-bottom: 6px;
    }
    .sai-field input[type="text"],
    .sai-field input[type="password"] {
        width: 100%;
        padding: 10px 14px;
        border: 1px solid #cbd5e1;
        border-radius: 8px;
        font-size: 14px;
        transition: border-color 0.2s;
    }
    .sai-field input:focus {
        outline: none;
        border-color: #7c3aed;
        box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
    }
    .sai-field .description {
        font-size: 13px;
        color: #94a3b8;
        margin-top: 4px;
    }
    .sai-field-check {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 14px;
    }
    .sai-field-check input[type="checkbox"] {
        margin-top: 2px;
    }
    .sai-field-check label {
        font-size: 14px;
        color: #334155;
        font-weight: 400;
        margin: 0;
    }
    .sai-field-check .description {
        font-size: 12px;
        color: #94a3b8;
        margin: 2px 0 0;
    }

    /* Buttons */
    .sai-actions {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 32px;
    }
    .sai-btn-primary {
        background: #7c3aed;
        color: #fff;
        border: none;
        padding: 12px 28px;
        border-radius: 8px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.2s;
    }
    .sai-btn-primary:hover {
        background: #6d28d9;
    }
    .sai-btn-secondary {
        background: none;
        border: 1px solid #cbd5e1;
        color: #64748b;
        padding: 10px 20px;
        border-radius: 8px;
        font-size: 14px;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.2s;
    }
    .sai-btn-secondary:hover {
        border-color: #7c3aed;
        color: #7c3aed;
    }
    .sai-btn-skip {
        color: #94a3b8;
        text-decoration: none;
        font-size: 14px;
    }
    .sai-btn-skip:hover {
        color: #64748b;
    }

    /* Features list */
    .sai-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin: 20px 0;
    }
    .sai-feature {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: #334155;
    }
    .sai-feature .dashicons {
        color: #22c55e;
        font-size: 18px;
        width: 18px;
        height: 18px;
    }

    /* Success */
    .sai-success {
        text-align: center;
        padding: 20px 0;
    }
    .sai-success .dashicons-yes-alt {
        font-size: 64px;
        width: 64px;
        height: 64px;
        color: #22c55e;
        margin-bottom: 16px;
    }
    .sai-connection-status {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
        margin: 16px 0;
    }
    .sai-connected {
        background: #f0fdf4;
        color: #16a34a;
        border: 1px solid #bbf7d0;
    }
    .sai-not-connected {
        background: #fef2f2;
        color: #dc2626;
        border: 1px solid #fecaca;
    }

    /* Verify AJAX */
    #sai-verify-result {
        margin-top: 10px;
        padding: 10px 14px;
        border-radius: 8px;
        font-size: 13px;
        display: none;
    }
    #sai-verify-result.success {
        background: #f0fdf4;
        color: #16a34a;
        border: 1px solid #bbf7d0;
        display: block;
    }
    #sai-verify-result.error {
        background: #fef2f2;
        color: #dc2626;
        border: 1px solid #fecaca;
        display: block;
    }
