/* ==========================================================================
   BLAZE - Base Stylesheet
   Version: 1.0.0
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
    /* Colors */
    --blaze-bg:            #0f1115;
    --blaze-surface:       #161a22;
    --blaze-surface-2:     #1d222c;
    --blaze-surface-3:     #232936;
    --blaze-border:        #262c38;
    --blaze-border-light:  #313847;

    --blaze-text:          #e7ebf3;
    --blaze-text-dim:      #9aa4b8;
    --blaze-text-muted:    #6b7488;

    --blaze-primary:       #ff5c1a;
    --blaze-primary-hover: #ff7738;
    --blaze-primary-dim:   rgba(255, 92, 26, 0.15);

    --blaze-danger:        #e53e3e;
    --blaze-danger-dim:    rgba(229, 62, 62, 0.15);

    --blaze-success:       #22c55e;
    --blaze-success-dim:   rgba(34, 197, 94, 0.15);

    --blaze-warning:       #eab308;
    --blaze-warning-dim:   rgba(234, 179, 8, 0.15);

    --blaze-info:          #3b82f6;
    --blaze-info-dim:      rgba(59, 130, 246, 0.15);

    /* Layout */
    --blaze-radius:        8px;
    --blaze-radius-sm:     6px;
    --blaze-radius-lg:     12px;
    --blaze-radius-full:   999px;

    /* Spacing */
    --blaze-space-1:       0.25rem;
    --blaze-space-2:       0.5rem;
    --blaze-space-3:       0.75rem;
    --blaze-space-4:       1rem;
    --blaze-space-5:       1.25rem;
    --blaze-space-6:       1.5rem;
    --blaze-space-8:       2rem;

    /* Typography */
    --blaze-font:          -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
                           'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
    --blaze-font-mono:     'SFMono-Regular', Consolas, 'Liberation Mono', Menlo,
                           Courier, monospace;

    /* Shadows */
    --blaze-shadow-sm:     0 1px 2px rgba(0, 0, 0, 0.3);
    --blaze-shadow:        0 4px 12px rgba(0, 0, 0, 0.35);
    --blaze-shadow-lg:     0 12px 32px rgba(0, 0, 0, 0.45);

    /* Transitions */
    --blaze-transition:    150ms ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    margin: 0;
    padding: 0;
    background: var(--blaze-bg);
    color: var(--blaze-text);
    font-family: var(--blaze-font);
    font-size: 15px;
    line-height: 1.55;
    min-height: 100vh;
}

body { overflow-x: hidden; }

img, svg { max-width: 100%; height: auto; display: block; }

a {
    color: var(--blaze-primary);
    text-decoration: none;
    transition: color var(--blaze-transition);
}
a:hover { color: var(--blaze-primary-hover); text-decoration: underline; }

code, pre {
    font-family: var(--blaze-font-mono);
    font-size: 0.88em;
}
code {
    background: var(--blaze-surface-3);
    padding: 0.15em 0.4em;
    border-radius: var(--blaze-radius-sm);
    color: var(--blaze-text);
}

hr {
    border: 0;
    border-top: 1px solid var(--blaze-border);
    margin: var(--blaze-space-5) 0;
}

::selection {
    background: var(--blaze-primary);
    color: #fff;
}

/* ---------- Headings ---------- */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 0.5em;
    font-weight: 600;
    line-height: 1.25;
    color: var(--blaze-text);
}
h1 { font-size: 1.5rem; }
h2 { font-size: 1.15rem; }
h3 { font-size: 1rem; }
h4 { font-size: 0.92rem; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

small { font-size: 0.85em; color: var(--blaze-text-dim); }

/* ==========================================================================
   Buttons
   ========================================================================== */

.blaze-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4em;
    padding: 0.55em 1.1em;
    border-radius: var(--blaze-radius);
    border: 1px solid var(--blaze-border);
    background: var(--blaze-surface-2);
    color: var(--blaze-text);
    cursor: pointer;
    font-size: 0.95rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--blaze-transition),
                border-color var(--blaze-transition),
                color var(--blaze-transition),
                transform var(--blaze-transition);
}
.blaze-btn:hover {
    background: var(--blaze-surface-3);
    border-color: var(--blaze-border-light);
    text-decoration: none;
    color: var(--blaze-text);
}
.blaze-btn:active { transform: translateY(1px); }
.blaze-btn:focus-visible {
    outline: 2px solid var(--blaze-primary);
    outline-offset: 2px;
}
.blaze-btn:disabled,
.blaze-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Button variants */
.blaze-btn--primary {
    background: var(--blaze-primary);
    border-color: var(--blaze-primary);
    color: #fff;
}
.blaze-btn--primary:hover {
    background: var(--blaze-primary-hover);
    border-color: var(--blaze-primary-hover);
    color: #fff;
}

.blaze-btn--danger {
    background: var(--blaze-danger);
    border-color: var(--blaze-danger);
    color: #fff;
}
.blaze-btn--danger:hover {
    background: #ef5350;
    border-color: #ef5350;
    color: #fff;
}

.blaze-btn--ghost {
    background: transparent;
    border-color: transparent;
    color: var(--blaze-text-dim);
}
.blaze-btn--ghost:hover {
    background: var(--blaze-surface-2);
    color: var(--blaze-text);
}

.blaze-btn--sm {
    padding: 0.35em 0.75em;
    font-size: 0.85rem;
}
.blaze-btn--lg {
    padding: 0.7em 1.4em;
    font-size: 1.05rem;
}
.blaze-btn--block { width: 100%; }

/* ==========================================================================
   Cards & Surfaces
   ========================================================================== */

.blaze-card {
    background: var(--blaze-surface);
    border: 1px solid var(--blaze-border);
    border-radius: var(--blaze-radius);
    padding: var(--blaze-space-5);
    margin-bottom: var(--blaze-space-4);
}

.blaze-card > h2:first-child,
.blaze-card > h3:first-child {
    margin-top: 0;
}

.blaze-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--blaze-space-3);
    margin-bottom: var(--blaze-space-4);
    flex-wrap: wrap;
}
.blaze-card__header h2,
.blaze-card__header h3 { margin: 0; }

.blaze-card--flat {
    background: var(--blaze-surface-2);
    border-color: transparent;
}

/* ==========================================================================
   Forms
   ========================================================================== */

.blaze-field {
    display: block;
    margin-bottom: var(--blaze-space-4);
}

.blaze-field > span {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--blaze-text-dim);
}

.blaze-field input[type="text"],
.blaze-field input[type="email"],
.blaze-field input[type="password"],
.blaze-field input[type="url"],
.blaze-field input[type="number"],
.blaze-field input[type="search"],
.blaze-field input[type="tel"],
.blaze-field input[type="date"],
.blaze-field input[type="datetime-local"],
.blaze-field select,
.blaze-field textarea {
    width: 100%;
    padding: 0.55em 0.75em;
    background: var(--blaze-surface-2);
    border: 1px solid var(--blaze-border);
    border-radius: var(--blaze-radius);
    color: var(--blaze-text);
    font-family: inherit;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: border-color var(--blaze-transition),
                background var(--blaze-transition),
                box-shadow var(--blaze-transition);
    -webkit-appearance: none;
    appearance: none;
}

.blaze-field select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239aa4b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2.25rem;
}

.blaze-field textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--blaze-font-mono);
    font-size: 0.9rem;
}

.blaze-field input:focus,
.blaze-field select:focus,
.blaze-field textarea:focus {
    outline: none;
    border-color: var(--blaze-primary);
    background: var(--blaze-surface);
    box-shadow: 0 0 0 3px var(--blaze-primary-dim);
}

.blaze-field input::placeholder,
.blaze-field textarea::placeholder {
    color: var(--blaze-text-muted);
}

.blaze-field input:disabled,
.blaze-field select:disabled,
.blaze-field textarea:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.blaze-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--blaze-space-4);
}
.blaze-field-row > .blaze-field { margin-bottom: var(--blaze-space-4); }

.blaze-form__actions {
    display: flex;
    gap: var(--blaze-space-2);
    justify-content: flex-end;
    align-items: center;
    margin-top: var(--blaze-space-5);
    padding-top: var(--blaze-space-4);
    border-top: 1px solid var(--blaze-border);
    flex-wrap: wrap;
}
.blaze-form__actions .blaze-btn { min-width: 120px; }

.blaze-inline-form {
    display: flex;
    gap: var(--blaze-space-2);
    align-items: center;
    flex-wrap: wrap;
}
.blaze-inline-form input,
.blaze-inline-form select {
    flex: 1 1 200px;
    padding: 0.55em 0.75em;
    background: var(--blaze-surface-2);
    border: 1px solid var(--blaze-border);
    border-radius: var(--blaze-radius);
    color: var(--blaze-text);
    font-family: inherit;
    font-size: 0.95rem;
}
.blaze-inline-form input:focus,
.blaze-inline-form select:focus {
    outline: none;
    border-color: var(--blaze-primary);
    box-shadow: 0 0 0 3px var(--blaze-primary-dim);
}

/* Help text under a field */
.blaze-help {
    display: block;
    margin-top: 0.35rem;
    color: var(--blaze-text-dim);
    font-size: 0.8rem;
    line-height: 1.4;
}
.blaze-help code { font-size: 0.85em; }

/* Muted text */
.blaze-muted {
    color: var(--blaze-text-dim);
    font-size: 0.88rem;
}

/* Checkbox row */
.blaze-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.6rem 0;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.45;
    user-select: none;
}
.blaze-checkbox input[type="checkbox"],
.blaze-checkbox input[type="radio"] {
    margin: 0;
    margin-top: 0.25rem;
    width: 16px;
    height: 16px;
    accent-color: var(--blaze-primary);
    cursor: pointer;
    flex-shrink: 0;
}
.blaze-checkbox > span { flex: 1; }
.blaze-checkbox:hover > span { color: var(--blaze-text); }

/* Section headings inside forms */
.blaze-form h2 {
    margin-top: var(--blaze-space-6);
    margin-bottom: var(--blaze-space-3);
    padding-bottom: 0.35rem;
    border-bottom: 1px solid var(--blaze-border);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blaze-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.blaze-form h2:first-of-type { margin-top: 0; }

/* ==========================================================================
   Tables
   ========================================================================== */

.blaze-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.blaze-table thead th {
    text-align: left;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--blaze-text-dim);
    padding: 0.6rem 0.6rem;
    border-bottom: 1px solid var(--blaze-border);
    white-space: nowrap;
}

.blaze-table tbody td {
    padding: 0.7rem 0.6rem;
    border-bottom: 1px solid var(--blaze-border);
    vertical-align: middle;
}
.blaze-table tbody tr:last-child td { border-bottom: 0; }
.blaze-table tbody tr:hover { background: var(--blaze-surface-2); }

.blaze-table__actions {
    text-align: right;
    white-space: nowrap;
}
.blaze-table__actions .blaze-link { margin-right: 0.6rem; }
.blaze-table__actions .blaze-link:last-child { margin-right: 0; }

/* ==========================================================================
   Badges
   ========================================================================== */

.blaze-badge {
    display: inline-block;
    padding: 0.15em 0.6em;
    border-radius: var(--blaze-radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.5;
    text-transform: lowercase;
    letter-spacing: 0.02em;
    background: var(--blaze-surface-3);
    border: 1px solid var(--blaze-border);
    color: var(--blaze-text-dim);
    white-space: nowrap;
}

.blaze-badge--sent,
.blaze-badge--success {
    background: var(--blaze-success-dim);
    border-color: var(--blaze-success);
    color: #86efac;
}
.blaze-badge--failed,
.blaze-badge--error {
    background: var(--blaze-danger-dim);
    border-color: var(--blaze-danger);
    color: #fca5a5;
}
.blaze-badge--queued,
.blaze-badge--warning {
    background: var(--blaze-warning-dim);
    border-color: var(--blaze-warning);
    color: #fde68a;
}
.blaze-badge--sending,
.blaze-badge--info {
    background: var(--blaze-info-dim);
    border-color: var(--blaze-info);
    color: #93c5fd;
}
.blaze-badge--draft,
.blaze-badge--muted {
    background: rgba(148, 163, 184, 0.12);
    border-color: #64748b;
    color: #cbd5e1;
}

/* ==========================================================================
   Flash Messages
   ========================================================================== */

.blaze-flash {
    padding: 0.75rem 1rem;
    border-radius: var(--blaze-radius);
    margin-bottom: var(--blaze-space-4);
    border: 1px solid var(--blaze-border);
    background: var(--blaze-surface-2);
    font-size: 0.92rem;
    line-height: 1.5;
    animation: blaze-slide-in 0.25s ease;
}
.blaze-flash--success {
    border-color: var(--blaze-success);
    background: var(--blaze-success-dim);
    color: #86efac;
}
.blaze-flash--error {
    border-color: var(--blaze-danger);
    background: var(--blaze-danger-dim);
    color: #fca5a5;
}
.blaze-flash--warning {
    border-color: var(--blaze-warning);
    background: var(--blaze-warning-dim);
    color: #fde68a;
}
.blaze-flash--info {
    border-color: var(--blaze-info);
    background: var(--blaze-info-dim);
    color: #93c5fd;
}

@keyframes blaze-slide-in {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Auth Layout
   ========================================================================== */

.blaze-body--auth {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background:
        radial-gradient(ellipse at top, #1a1f2b 0%, #0f1115 60%),
        var(--blaze-bg);
    padding: var(--blaze-space-4);
}

.blaze-auth {
    width: 100%;
    max-width: 400px;
}
.blaze-auth__brand {
    text-align: center;
    margin-bottom: var(--blaze-space-5);
}
.blaze-auth__brand img {
    display: inline-block;
    height: 40px;
    width: auto;
}
.blaze-auth__title {
    text-align: center;
    margin-bottom: var(--blaze-space-5);
    font-size: 1.25rem;
}
.blaze-auth__form { padding: var(--blaze-space-6); }
.blaze-auth__foot {
    text-align: center;
    color: var(--blaze-text-dim);
    font-size: 0.85rem;
    margin-top: var(--blaze-space-4);
}

/* ==========================================================================
   Empty States
   ========================================================================== */

.blaze-empty {
    color: var(--blaze-text-dim);
    text-align: center;
    padding: var(--blaze-space-6) var(--blaze-space-4);
    font-size: 0.95rem;
}
.blaze-empty::before {
    content: "○";
    display: block;
    font-size: 2rem;
    opacity: 0.35;
    margin-bottom: var(--blaze-space-2);
}

/* ==========================================================================
   Links
   ========================================================================== */

.blaze-link {
    color: var(--blaze-primary);
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0;
    font: inherit;
    font-size: inherit;
    text-decoration: none;
    transition: color var(--blaze-transition);
}
.blaze-link:hover {
    color: var(--blaze-primary-hover);
    text-decoration: underline;
}
.blaze-link--danger { color: var(--blaze-danger); }
.blaze-link--danger:hover { color: #ef5350; }
.blaze-link--muted { color: var(--blaze-text-dim); }
.blaze-link--muted:hover { color: var(--blaze-text); }

/* ==========================================================================
   Modal
   ========================================================================== */

.blaze-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--blaze-space-4);
    z-index: 50;
    animation: blaze-fade-in 0.15s ease;
}
.blaze-modal[hidden] { display: none; }

.blaze-modal__box {
    background: var(--blaze-surface);
    border: 1px solid var(--blaze-border);
    border-radius: var(--blaze-radius-lg);
    padding: var(--blaze-space-5);
    width: 100%;
    max-width: 480px;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    box-shadow: var(--blaze-shadow-lg);
    animation: blaze-modal-in 0.2s ease;
}
.blaze-modal__box h2 { margin-top: 0; }

@keyframes blaze-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes blaze-modal-in {
    from { opacity: 0; transform: translateY(-8px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.blaze-pagination {
    display: flex;
    gap: 0.35rem;
    margin-top: var(--blaze-space-4);
    justify-content: center;
    flex-wrap: wrap;
}
.blaze-pagination a {
    padding: 0.3em 0.7em;
    border-radius: var(--blaze-radius);
    border: 1px solid var(--blaze-border);
    background: var(--blaze-surface-2);
    color: var(--blaze-text);
    font-size: 0.9rem;
    min-width: 34px;
    text-align: center;
    transition: background var(--blaze-transition);
}
.blaze-pagination a:hover {
    background: var(--blaze-surface-3);
    text-decoration: none;
}
.blaze-pagination a.is-active {
    background: var(--blaze-primary);
    border-color: var(--blaze-primary);
    color: #fff;
    font-weight: 600;
}

/* ==========================================================================
   Definition Lists
   ========================================================================== */

.blaze-dl {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 0.5rem 1rem;
    margin: 0;
    font-size: 0.92rem;
}
.blaze-dl dt {
    color: var(--blaze-text-dim);
    font-weight: 500;
}
.blaze-dl dd {
    margin: 0;
    color: var(--blaze-text);
    word-break: break-word;
}

/* ==========================================================================
   Preview (iframe)
   ========================================================================== */

.blaze-preview {
    width: 100%;
    min-height: 400px;
    border: 1px solid var(--blaze-border);
    border-radius: var(--blaze-radius);
    background: #fff;
}

/* ==========================================================================
   Status Indicators (checklists)
   ========================================================================== */

.blaze-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}
.blaze-checklist li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--blaze-border);
    font-size: 0.92rem;
    line-height: 1.45;
}
.blaze-checklist li:last-child { border-bottom: 0; }
.blaze-checklist code { font-size: 0.85em; }
.blaze-checklist em {
    color: var(--blaze-danger);
    font-style: normal;
    font-size: 0.85em;
}

.blaze-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1;
}
.blaze-status--ok    { background: var(--blaze-success-dim); color: #86efac; }
.blaze-status--error { background: var(--blaze-danger-dim);  color: #fca5a5; }
.blaze-status--warn  { background: var(--blaze-warning-dim); color: #fde68a; }
.blaze-status--info  { background: var(--blaze-info-dim);    color: #93c5fd; }

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.blaze-text-dim    { color: var(--blaze-text-dim); }
.blaze-text-muted  { color: var(--blaze-text-muted); }
.blaze-text-danger { color: var(--blaze-danger); }
.blaze-text-success{ color: var(--blaze-success); }
.blaze-text-warning{ color: var(--blaze-warning); }
.blaze-text-center { text-align: center; }
.blaze-text-right  { text-align: right; }
.blaze-text-mono   { font-family: var(--blaze-font-mono); font-size: 0.9em; }
.blaze-nowrap      { white-space: nowrap; }
.blaze-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.blaze-mt-0 { margin-top: 0 !important; }
.blaze-mt-2 { margin-top: var(--blaze-space-2) !important; }
.blaze-mt-4 { margin-top: var(--blaze-space-4) !important; }
.blaze-mb-0 { margin-bottom: 0 !important; }
.blaze-mb-2 { margin-bottom: var(--blaze-space-2) !important; }
.blaze-mb-4 { margin-bottom: var(--blaze-space-4) !important; }

.blaze-flex        { display: flex; }
.blaze-flex-between{ display: flex; align-items: center; justify-content: space-between; gap: var(--blaze-space-3); }
.blaze-flex-center { display: flex; align-items: center; justify-content: center; }
.blaze-gap-2       { gap: var(--blaze-space-2); }
.blaze-gap-3       { gap: var(--blaze-space-3); }
.blaze-gap-4       { gap: var(--blaze-space-4); }
.blaze-wrap        { flex-wrap: wrap; }

.blaze-hidden { display: none !important; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 640px) {
    .blaze-field-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .blaze-form__actions {
        flex-direction: column-reverse;
    }
    .blaze-form__actions .blaze-btn { width: 100%; }

    .blaze-dl {
        grid-template-columns: 1fr;
        gap: 0.15rem 0;
    }
    .blaze-dl dt { margin-top: 0.5rem; }
    .blaze-dl dt:first-child { margin-top: 0; }

    .blaze-card { padding: var(--blaze-space-4); }
    .blaze-auth__form { padding: var(--blaze-space-5); }
}

@media (max-width: 480px) {
    html, body { font-size: 14px; }
    .blaze-table { font-size: 0.85rem; }
    .blaze-table thead th,
    .blaze-table tbody td { padding: 0.5rem 0.4rem; }
}

/* ==========================================================================
   Accessibility
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

:focus-visible {
    outline: 2px solid var(--blaze-primary);
    outline-offset: 2px;
}

/* ==========================================================================
   Print
   ========================================================================== */

@media print {
    body {
        background: #fff;
        color: #000;
    }
    .blaze-sidebar,
    .blaze-footer,
    .blaze-form__actions,
    .blaze-btn { display: none !important; }
    .blaze-card {
        border: 1px solid #ccc;
        box-shadow: none;
        page-break-inside: avoid;
    }
}