/* ─── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── Tokens ─────────────────────────────────────────────────────────────── */
:root {
    --bg:        #111114;
    --surface:   #18181c;
    --surface2:  #1f1f26;
    --border:    #2a2a30;
    --border2:   #3a3a44;
    --text:      #e4e4e7;
    --text-muted:#9ca3af;
    --text-faint:#52525b;
    --accent:    #e91e8c;
    --accent-h:  #d4187f;
    --danger:    #dc2626;
    --danger-h:  #b91c1c;
    --success:   #16a34a;
    --radius:    8px;
    --radius-sm: 5px;
}

/* ─── Base ───────────────────────────────────────────────────────────────── */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    color: var(--text);
    background: var(--bg);
    display: flex;
    min-height: 100vh;
}

/* ─── Sidebar ────────────────────────────────────────────────────────────── */
#sidebar {
    width: 224px;
    min-height: 100vh;
    background: var(--surface);
    border-right: 1px solid var(--border);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

#sidebar .logo {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 22px 18px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.01em;
    border-bottom: 1px solid var(--border);
}

#sidebar .logo::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px rgba(233,30,140,.6);
    flex-shrink: 0;
}

#sidebar nav {
    padding: 10px 0;
    flex: 1;
}

#sidebar nav a {
    display: block;
    padding: 9px 18px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13.5px;
    border-left: 2px solid transparent;
    transition: color .15s, background .15s, border-color .15s;
}

#sidebar nav a:hover {
    background: var(--surface2);
    color: var(--text);
    border-left-color: var(--border2);
}

#sidebar nav a.active {
    background: rgba(233,30,140,.08);
    color: #fff;
    border-left-color: var(--accent);
    font-weight: 500;
}

#sidebar .logout {
    padding: 14px 18px;
    border-top: 1px solid var(--border);
}

#sidebar .logout a {
    color: var(--text-faint);
    text-decoration: none;
    font-size: 13px;
    transition: color .15s;
}

#sidebar .logout a:hover { color: var(--text-muted); }

/* ─── Main content ───────────────────────────────────────────────────────── */
#main {
    flex: 1;
    padding: 32px 36px;
    overflow-x: auto;
    min-width: 0;
}

#main h1 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.02em;
    margin-bottom: 22px;
}

#main h2 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin: 28px 0 10px;
}

/* ─── Action bar ─────────────────────────────────────────────────────────── */
.action-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 13px;
    font-family: inherit;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.4;
    transition: background .15s, box-shadow .15s, color .15s, border-color .15s, transform .1s;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.btn-primary:hover {
    background: var(--accent-h);
    border-color: var(--accent-h);
    box-shadow: 0 0 14px rgba(233,30,140,.3);
    transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }

.btn-danger {
    background: transparent;
    color: var(--text-muted);
    border-color: var(--border);
}
.btn-danger:hover,
.btn-danger:focus-visible {
    background: rgba(220,38,38,.12);
    color: #f87171;
    border-color: rgba(220,38,38,.4);
}

.btn-secondary {
    background: var(--surface2);
    color: var(--text-muted);
    border-color: var(--border);
}
.btn-secondary:hover {
    background: var(--border);
    color: var(--text);
    border-color: var(--border2);
}

.btn-ghost {
    background: transparent;
    color: var(--text-faint);
    border-color: transparent;
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
    background: var(--surface2);
    color: var(--text-muted);
    border-color: var(--border);
}

.btn-sm { padding: 4px 10px; font-size: 12px; }

/* ─── Tables ─────────────────────────────────────────────────────────────── */
.widefat {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.widefat th {
    background: var(--bg);
    padding: 10px 14px;
    text-align: left;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--text-faint);
    border-bottom: 1px solid var(--border);
}

.widefat td {
    padding: 11px 14px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
    color: var(--text);
    font-size: 13.5px;
}

.widefat tr:last-child td { border-bottom: none; }
.widefat tbody tr:hover td { background: var(--surface2); }

.month-header td {
    background: rgba(233,30,140,.12) !important;
    color: var(--accent);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-align: left;
    border-bottom: 1px solid rgba(233,30,140,.2);
}

/* ─── Summary card ───────────────────────────────────────────────────────── */
.campaigns-summary-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 6px;
}

.campaigns-summary-row .summary-card {
    flex: 1;
    min-width: 260px;
    margin-bottom: 16px;
}

.summary-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 22px;
    margin-bottom: 22px;
    max-width: 480px;
}

.summary-card strong {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text);
}

.summary-card strong span {
    color: var(--accent);
}

.summary-card table {
    border-collapse: collapse;
    width: 100%;
    font-size: 13px;
}

.summary-card th {
    text-align: left;
    padding: 4px 8px;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    font-size: 12px;
}

.summary-card td { padding: 5px 8px; color: var(--text); }
.summary-card td:last-child { text-align: right; }

.summary-card p {
    margin-top: 10px;
    font-size: 12px;
    color: var(--text-faint);
}

/* ─── Forms ──────────────────────────────────────────────────────────────── */
.form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    max-width: 680px;
}

.form-row { margin-bottom: 18px; }

.form-row label {
    display: block;
    font-weight: 500;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
    letter-spacing: .01em;
}

.form-row input[type=text],
.form-row input[type=email],
.form-row input[type=url],
.form-row input[type=number],
.form-row input[type=password],
.form-row input[type=month],
.form-row input[type=datetime-local],
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    background: var(--bg);
    outline: none;
    transition: border-color .15s, box-shadow .15s;
}

.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--text-faint); }

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(233,30,140,.15);
}

.form-row select option {
    background: var(--surface);
    color: var(--text);
}

.form-row textarea { min-height: 90px; resize: vertical; }

.form-row input[type=checkbox] {
    width: auto;
    margin-right: 6px;
    accent-color: var(--accent);
}

/* ─── Toggle switch ──────────────────────────────────────────────────────── */
.toggle-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    margin-top: 2px;
}

.toggle-input,
.form-row .toggle-input,
.form-row input[type=checkbox].toggle-input {
    position: absolute;
    opacity: 0;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    pointer-events: none;
}

.toggle-track {
    display: block;
    position: relative;
    width: 40px;
    height: 22px;
    background: var(--surface2);
    border: 1px solid var(--border2);
    border-radius: 999px;
    flex-shrink: 0;
    transition: background .2s, border-color .2s, box-shadow .2s;
}

.toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 14px;
    height: 14px;
    background: var(--text-faint);
    border-radius: 50%;
    transition: transform .2s, background .2s;
}

.toggle-input:checked + .toggle-track {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(233,30,140,.35);
}

.toggle-input:checked + .toggle-track .toggle-thumb {
    transform: translateX(18px);
    background: #fff;
}

.toggle-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    line-height: 1;
}

.form-actions { display: flex; gap: 10px; margin-top: 24px; }

/* ─── Notices ────────────────────────────────────────────────────────────── */
.notice {
    padding: 11px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
    border-left: 3px solid transparent;
    font-size: 13.5px;
}

.notice-success {
    background: rgba(22,163,74,.1);
    border-left-color: var(--success);
    color: #4ade80;
}

.notice-error {
    background: rgba(233,30,140,.08);
    border-left-color: var(--accent);
    color: #f472b6;
}

/* ─── Empty state ────────────────────────────────────────────────────────── */
.empty-state {
    text-align: center;
    color: var(--text-faint);
    padding: 28px 20px;
}

/* ─── Status indicator (inline text) ────────────────────────────────────── */
.status-text {
    font-size: 13px;
    color: var(--text-muted);
}

/* ─── Badges ─────────────────────────────────────────────────────────────── */
.badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.badge-published { background: rgba(22,163,74,.15);  color: #4ade80; }
.badge-pending   { background: rgba(234,179,8,.15);  color: #facc15; }
.badge-created   { background: rgba(139,92,246,.15); color: #a78bfa; }
.badge-queued    { background: rgba(14,165,233,.15); color: #38bdf8; }
.badge-error     { background: rgba(220,38,38,.15); color: #f87171; }

/* ─── Login page ─────────────────────────────────────────────────────────── */
body.login-page {
    justify-content: center;
    align-items: center;
    background: var(--bg);
    min-height: 100vh;
}

.login-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding: 24px;
}

.login-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 44px 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 0 1px rgba(255,255,255,.03), 0 24px 64px rgba(0,0,0,.5);
}

.login-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-faint);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.login-brand-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px rgba(233,30,140,.6);
}

.login-heading {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.02em;
    margin-bottom: 6px;
}

.login-sub {
    font-size: 14px;
    color: var(--text-faint);
    margin-bottom: 32px;
}

.login-error {
    background: rgba(233,30,140,.1);
    border: 1px solid rgba(233,30,140,.3);
    color: #f472b6;
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 13px;
    margin-bottom: 20px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.login-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.login-field label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: .01em;
}

.login-field input {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-size: 14px;
    color: #fff;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
    width: 100%;
}

.login-field input::placeholder { color: var(--text-faint); }

.login-field input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(233,30,140,.15);
}

.login-btn {
    margin-top: 8px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    font-size: 15px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    letter-spacing: .01em;
    transition: background .15s, box-shadow .15s, transform .1s;
}

.login-btn:hover {
    background: var(--accent-h);
    box-shadow: 0 0 20px rgba(233,30,140,.35);
    transform: translateY(-1px);
}

.login-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

/* ─── Campaign Wizard ────────────────────────────────────────────────────── */
.wizard-wrap { max-width: 700px; }

.wizard-progress {
    display: flex;
    max-width: 700px;
    margin-bottom: 32px;
    position: relative;
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.wizard-step-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.wizard-step-dot-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--surface2);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-faint);
    transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
}

.wizard-step-dot.active .wizard-step-dot-circle {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 0 12px rgba(233,30,140,.4);
}

.wizard-step-dot.done .wizard-step-dot-circle {
    background: var(--success);
    border-color: var(--success);
    color: #fff;
}

.wizard-step-dot-label {
    font-size: 11px;
    color: var(--text-faint);
    text-align: center;
    white-space: nowrap;
    transition: color .2s;
}

.wizard-step-dot.active .wizard-step-dot-label { color: var(--accent); font-weight: 600; }
.wizard-step-dot.done .wizard-step-dot-label   { color: var(--success); }

.wizard-step        { display: none; }
.wizard-step.active { display: block; }

.wizard-step-heading {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.wizard-step-desc {
    color: var(--text-muted);
    font-size: 13.5px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.wizard-search {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    background: var(--bg);
    outline: none;
    transition: border-color .15s, box-shadow .15s;
    margin-bottom: 10px;
}

.wizard-search:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(233,30,140,.15);
}

.wizard-card-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 14px;
    max-height: 320px;
    overflow-y: auto;
}

.wizard-card {
    display: flex;
    align-items: center;
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 11px 14px;
    cursor: pointer;
    transition: border-color .15s, background .15s;
    gap: 12px;
}

.wizard-card:hover    { border-color: var(--border2); background: var(--surface2); }
.wizard-card.selected { border-color: var(--accent); background: rgba(233,30,140,.06); }

.wizard-card-info    { flex: 1; min-width: 0; }

.wizard-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wizard-card-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wizard-card-actions { display: flex; gap: 6px; align-items: center; flex-shrink: 0; }

.wizard-empty-list {
    text-align: center;
    color: var(--text-faint);
    font-size: 13px;
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.wizard-create-toggle {
    display: block;
    width: 100%;
    background: none;
    border: 1px dashed var(--border2);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    padding: 9px 16px;
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    text-align: center;
    transition: border-color .15s, color .15s, background .15s;
    margin-bottom: 8px;
}

.wizard-create-toggle:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(233,30,140,.04);
}

.wizard-inline-form {
    display: none;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 8px;
}

.wizard-inline-form.open { display: block; }

.wizard-crawl-notice {
    margin-bottom: 10px;
    padding: 9px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    display: none;
}

.wizard-crawl-status {
    margin-top: 12px;
    padding: 9px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    display: none;
}

.wizard-crawl-notice.crawling,
.wizard-crawl-status.crawling {
    display: block;
    background: rgba(234,179,8,.08);
    border-left: 3px solid #facc15;
    color: #facc15;
}

.wizard-crawl-notice.done,
.wizard-crawl-status.done {
    display: block;
    background: rgba(22,163,74,.1);
    border-left: 3px solid var(--success);
    color: #4ade80;
}

.wizard-crawl-notice.error,
.wizard-crawl-status.error {
    display: block;
    background: rgba(220,38,38,.1);
    border-left: 3px solid var(--danger);
    color: #f87171;
}

.wizard-nav {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    align-items: center;
}

.wizard-nav .spacer { flex: 1; }

.wizard-review-table { width: 100%; border-collapse: collapse; }
.wizard-review-table tr { border-bottom: 1px solid var(--border); }
.wizard-review-table tr:last-child { border-bottom: none; }

.wizard-review-table th {
    text-align: left;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: .04em;
    width: 38%;
}

.wizard-review-table td { padding: 10px 14px; font-size: 14px; color: var(--text); word-break: break-all; }

/* ─── Campaign form card ─────────────────────────────────────────────────── */
.cf-card {
    flex: 1;
    min-width: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.cf-section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--text-faint);
    padding: 20px 24px 10px;
}

.cf-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0 0;
}

.cf-field {
    padding: 6px 24px 14px;
}

.cf-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 7px;
}

.cf-input {
    width: 100%;
    padding: 9px 12px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
    -webkit-appearance: none;
    appearance: none;
}

.cf-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(233,30,140,.15);
}

.cf-input::placeholder { color: var(--text-faint); }

.cf-input-hero {
    font-size: 16px;
    font-weight: 600;
    padding: 11px 14px;
    color: #fff;
    letter-spacing: -.01em;
}

/* stepper */
.cf-stepper {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 160px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color .15s, box-shadow .15s;
}

.cf-stepper:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(233,30,140,.15);
}

.cf-stepper-btn {
    -webkit-appearance: none;
    appearance: none;
    width: 38px;
    height: 38px;
    background: var(--surface2);
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .15s, color .15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cf-stepper-btn:hover { background: var(--border); color: var(--text); }

.cf-stepper-input {
    -webkit-appearance: none;
    appearance: none;
    flex: 1;
    border: none;
    background: transparent;
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    text-align: center;
    outline: none;
    padding: 0;
    min-width: 0;
}

.cf-stepper-input::-webkit-inner-spin-button,
.cf-stepper-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.cf-stepper-input[type=number] { -moz-appearance: textfield; }

/* two-col field row */
.cf-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 4px;
}

.cf-field-row-unequal {
    grid-template-columns: 1fr auto;
    align-items: end;
}

.cf-field-toggle {
    padding-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

/* actions bar */
.cf-actions {
    display: flex;
    gap: 10px;
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    background: var(--surface);
    margin-top: 8px;
    border-radius: 0 0 var(--radius) var(--radius);
}

/* ─── Campaign edit two-column layout ───────────────────────────────────── */
.campaign-edit-layout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.campaign-edit-layout .form-card {
    max-width: 560px;
    flex-shrink: 0;
    width: 100%;
}

/* ─── Stats panel ────────────────────────────────────────────────────────── */
.campaign-stats-panel {
    flex: 1;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stats-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
}

.stats-section-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 14px;
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
}

.stats-row:last-child { border-bottom: none; }

.stats-label {
    font-size: 13px;
    color: var(--text-muted);
}

.stats-value {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}

.stats-accent { color: var(--accent); }

.stats-grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.stats-tile {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 8px;
    text-align: center;
}

.stats-tile-num {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: 5px;
}

.stats-tile-label {
    font-size: 11px;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.stats-article-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stats-article-row {
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
}

.stats-article-row:last-child { border-bottom: none; }

.stats-article-title {
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.stats-article-meta {
    font-size: 12px;
    color: var(--text-faint);
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .campaign-edit-layout { flex-direction: column; }
    .campaign-edit-layout .form-card { max-width: 100%; }
    .campaign-stats-panel { width: 100%; }
    .stats-grid4 { grid-template-columns: repeat(2, 1fr); }
    .cf-field-row,
    .cf-field-row-unequal { grid-template-columns: 1fr; }
}

/* ─── Month picker ───────────────────────────────────────────────────────── */
.mp-wrap {
    position: relative;
    width: 100%;
}

.mp-trigger {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 9px 12px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
    /* override cf-input focus ring so mp-trigger handles it */
    box-shadow: none;
}

.mp-trigger:hover { border-color: var(--border2); }

.mp-trigger.open {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(233,30,140,.15);
}

.mp-trigger-text { flex: 1; text-align: left; }

.mp-trigger-chevron {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: .45;
    transition: transform .2s;
}

.mp-trigger.open .mp-trigger-chevron { transform: rotate(180deg); }

.mp-popup {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    z-index: 300;
    width: 272px;
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: var(--radius);
    padding: 14px;
    box-shadow: 0 16px 48px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.04);
}

.mp-popup.open { display: block; }

.mp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.mp-year {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.01em;
    min-width: 48px;
    text-align: center;
}

.mp-nav {
    -webkit-appearance: none;
    appearance: none;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    line-height: 1;
    padding: 0;
    transition: background .15s, color .15s, border-color .15s;
}

.mp-nav:hover {
    background: var(--border);
    color: var(--text);
    border-color: var(--border2);
}

.mp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.mp-month {
    -webkit-appearance: none;
    appearance: none;
    padding: 9px 4px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 13px;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    line-height: 1;
    transition: background .12s, color .12s, border-color .12s;
}

.mp-month:hover {
    background: var(--surface2);
    border-color: var(--border);
    color: var(--text);
}

.mp-month.selected {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 0 12px rgba(233,30,140,.4);
}

/* ─── Mobile top bar ─────────────────────────────────────────────────────── */
#topbar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 52px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    z-index: 90;
    align-items: center;
    padding: 0 16px;
    gap: 12px;
}

#topbar .topbar-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.01em;
    display: flex;
    align-items: center;
    gap: 8px;
}

#topbar .topbar-title::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px rgba(233,30,140,.6);
    flex-shrink: 0;
}

#hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
}

#hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
}

/* ─── Sidebar overlay backdrop (mobile) ──────────────────────────────────── */
#sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 95;
}

/* ─── Responsive breakpoint ──────────────────────────────────────────────── */
@media (max-width: 768px) {
    #topbar { display: flex; }

    body { flex-direction: column; }

    #sidebar {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        z-index: 100;
        transform: translateX(-100%);
        transition: transform .25s ease;
        min-height: unset;
    }

    body.sidebar-open #sidebar { transform: translateX(0); }
    body.sidebar-open #sidebar-overlay { display: block; }

    #main {
        padding: 16px;
        padding-top: 68px;
    }

    #main h1 { font-size: 19px; margin-bottom: 16px; }

    .action-bar { flex-wrap: wrap; }

    .form-card { padding: 20px 16px; }

    .table-scroll {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 28px;
    }

    .table-scroll .widefat { margin-bottom: 0; }

    .summary-card { padding: 14px 16px; }

    .login-card { padding: 32px 24px; }
}

/* ─── Dashboard: Delivery Section ───────────────────────────────────────── */
.delivery-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 28px;
}

.delivery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.delivery-header h2 {
    color: #fff;
}

.delivery-hero {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.delivery-hero__numbers {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-shrink: 0;
}

.delivery-hero__delivered {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.delivery-hero__separator {
    font-size: 24px;
    color: var(--text-faint);
}

.delivery-hero__quota {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-muted);
}

.delivery-hero__label {
    font-size: 13px;
    color: var(--text-muted);
    margin-left: 8px;
}

.delivery-hero__pct {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    flex-shrink: 0;
}

/* Progress bars */
.progress-bar {
    flex: 1;
    height: 10px;
    min-width: 60px;
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar--sm {
    height: 7px;
    border-radius: 4px;
}

.progress-bar__fill {
    height: 100%;
    min-width: 3px;
    background: var(--accent);
    border-radius: inherit;
    transition: width .3s ease;
}

.progress-bar__fill--complete {
    background: var(--success);
}

.progress-bar__fill--behind {
    background: #facc15;
}

/* Delivery table */
.delivery-table {
    margin-bottom: 0 !important;
    table-layout: fixed;
}

.delivery-table th:nth-child(1),
.delivery-table td:nth-child(1) { width: auto; }

.delivery-table th:nth-child(2),
.delivery-table td:nth-child(2),
.delivery-table th:nth-child(3),
.delivery-table td:nth-child(3),
.delivery-table th:nth-child(4),
.delivery-table td:nth-child(4) { width: 90px; text-align: center; }

.delivery-table th:nth-child(5),
.delivery-table td:nth-child(5) { width: 160px; padding-right: 20px; }

.row--behind td:first-child {
    border-left: 3px solid #facc15;
    padding-left: 12px;
}

/* ─── Customers table ───────────────────────────────────────────────────── */
.customers-table { table-layout: fixed; }
.customers-table th:nth-child(1),
.customers-table td:nth-child(1) { width: auto; }
.customers-table th:nth-child(2),
.customers-table td:nth-child(2) { width: 130px; }
.customers-table th:nth-child(3),
.customers-table td:nth-child(3) { width: 100px; text-align: center; }
.customers-table th:nth-child(4),
.customers-table td:nth-child(4) { width: 100px; text-align: center; }
.customers-table th:nth-child(5),
.customers-table td:nth-child(5) { width: 200px; }

/* ─── Campaigns grid ─────────────────────────────────────────────────────── */
.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
    align-items: start;
}

.campaigns-group {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    min-width: 0;
}

.campaigns-group h2 { margin-bottom: 8px; }

.campaigns-group .table-scroll { margin-bottom: 0; }

.campaigns-group .widefat {
    background: transparent;
    border: none;
    margin-bottom: 0;
}

.campaigns-group .widefat th { background: transparent; }

@media (max-width: 1100px) {
    .campaigns-grid { grid-template-columns: 1fr; }
}

/* ─── Campaign table ─────────────────────────────────────────────────────── */
.campaign-table { table-layout: fixed; min-width: 0; }
.campaign-table th:nth-child(1),
.campaign-table td:nth-child(1) { width: auto; }
.campaign-table th:nth-child(2),
.campaign-table td:nth-child(2) { width: 40px; text-align: center; }
.campaign-table th:nth-child(3),
.campaign-table td:nth-child(3) { width: 80px; text-align: center; }
.campaign-table th:nth-child(4),
.campaign-table td:nth-child(4) { width: 100px; }
.campaign-table th:nth-child(5),
.campaign-table td:nth-child(5) { width: 70px; }

/* ─── Icon buttons ───────────────────────────────────────────────────────── */
.icon-actions {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-wrap: nowrap;
}

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    background: transparent;
    cursor: pointer;
    color: var(--text-faint);
    text-decoration: none;
    transition: background .15s, color .15s, border-color .15s;
    flex-shrink: 0;
}

.icon-btn svg {
    width: 14px;
    height: 14px;
}

.icon-btn--primary {
    color: var(--accent);
}
.icon-btn--primary:hover,
.icon-btn--primary:focus-visible {
    background: rgba(233,30,140,.1);
    border-color: rgba(233,30,140,.3);
    color: var(--accent);
}

.icon-btn--ghost {
    color: var(--text-faint);
}
.icon-btn--ghost:hover,
.icon-btn--ghost:focus-visible {
    background: var(--surface2);
    border-color: var(--border);
    color: var(--text-muted);
}

.icon-btn--danger {
    color: var(--text-faint);
}
.icon-btn--danger:hover,
.icon-btn--danger:focus-visible {
    background: rgba(220,38,38,.12);
    color: #f87171;
    border-color: rgba(220,38,38,.4);
}

/* ─── Customer edit layout ──────────────────────────────────────────────── */
.customer-edit-layout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.customer-edit-left {
    width: 480px;
    flex-shrink: 0;
}

.customer-edit-left .form-card {
    max-width: none;
}

.customer-edit-right {
    flex: 1;
    min-width: 0;
}

.customer-pages-scroll {
    max-height: 70vh;
    overflow-y: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.customer-pages-scroll .widefat {
    margin-bottom: 0;
    border: none;
}

.customer-pages-scroll thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: var(--bg);
}

.pages-filter-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-family: inherit;
    color: var(--text);
    background: var(--bg);
    outline: none;
    margin-bottom: 10px;
    transition: border-color .15s, box-shadow .15s;
}

.pages-filter-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(233,30,140,.15);
}

.pages-filter-input::placeholder { color: var(--text-faint); }

/* Customer pages table column widths */
.customer-pages-table { table-layout: fixed; }
.customer-pages-table th:nth-child(1),
.customer-pages-table td:nth-child(1) { width: 45%; }
.customer-pages-table th:nth-child(2),
.customer-pages-table td:nth-child(2) { width: 18%; }
.customer-pages-table th:nth-child(3),
.customer-pages-table td:nth-child(3) { width: 22%; }
.customer-pages-table th:nth-child(4),
.customer-pages-table td:nth-child(4) { width: 15%; }

@media (max-width: 1100px) {
    .customer-edit-layout { flex-direction: column; }
    .customer-edit-left { width: 100%; }
    .customer-edit-right { width: 100%; }
    .customer-pages-scroll { max-height: 50vh; }
}

/* ─── Dashboard: System Status ──────────────────────────────────────────── */
.system-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-weight: 500;
}

.system-status--ok {
    color: #4ade80;
    background: rgba(22,163,74,.08);
}

.system-status--warning {
    color: #facc15;
    background: rgba(234,179,8,.08);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot--ok {
    background: var(--success);
    box-shadow: 0 0 6px rgba(22,163,74,.5);
}

.status-dot--warning {
    background: #facc15;
    box-shadow: 0 0 6px rgba(234,179,8,.5);
    animation: pulse-warning 2s infinite;
}

@keyframes pulse-warning {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

/* ─── Dashboard: Needs Attention ────────────────────────────────────────── */
.all-clear {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: rgba(22,163,74,.06);
    border: 1px solid rgba(22,163,74,.15);
    border-radius: var(--radius);
    color: #4ade80;
    font-size: 14px;
    margin-bottom: 28px;
}

.all-clear__icon {
    font-size: 18px;
    font-weight: 700;
}

.attention-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 28px;
}

.attention-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    line-height: 1.5;
}

.attention-item--error {
    background: rgba(220,38,38,.10);
    border-left: 3px solid #f87171;
    color: #fca5a5;
}

.attention-item--behind {
    background: rgba(234,179,8,.08);
    border-left: 3px solid #facc15;
    color: #fef08a;
}

.attention-item--unverified {
    background: rgba(14,165,233,.08);
    border-left: 3px solid #38bdf8;
    color: #bae6fd;
}

.attention-item__icon {
    font-size: 15px;
    flex-shrink: 0;
    line-height: 1.3;
}

.attention-item__message {
    flex: 1;
    min-width: 0;
    word-break: break-word;
}

/* ─── Dashboard: Recent Activity ────────────────────────────────────────── */
.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 28px;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-item__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    flex-shrink: 0;
    margin-top: 6px;
}

.activity-item__text {
    flex: 1;
    color: var(--text-muted);
    line-height: 1.5;
}

.activity-item__text strong {
    color: var(--text);
    font-weight: 500;
}

.activity-item__text em {
    color: var(--text);
    font-style: normal;
}

.activity-item__time {
    flex-shrink: 0;
    color: var(--text-faint);
    font-size: 12px;
    margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ANIMATION SYSTEM — reusable tokens and classes for all pages
   ═══════════════════════════════════════════════════════════════════════════ */
:root {
    --anim-fade-dur:     250ms;
    --anim-stagger:      50ms;
    --anim-bar-dur:      500ms;
    --anim-hover-dur:    150ms;
    --anim-ease:         cubic-bezier(.4, 0, .2, 1);
    --anim-ease-out:     cubic-bezier(0, 0, .2, 1);
}

/* ── Load: fade-up ───────────────────────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.anim-fade-up {
    animation: fadeUp var(--anim-fade-dur) var(--anim-ease-out) both;
}

/* Stagger delays via inline --delay or nth-child classes */
.anim-delay-1 { animation-delay: calc(var(--anim-stagger) * 1); }
.anim-delay-2 { animation-delay: calc(var(--anim-stagger) * 2); }
.anim-delay-3 { animation-delay: calc(var(--anim-stagger) * 3); }
.anim-delay-4 { animation-delay: calc(var(--anim-stagger) * 4); }
.anim-delay-5 { animation-delay: calc(var(--anim-stagger) * 5); }
.anim-delay-6 { animation-delay: calc(var(--anim-stagger) * 6); }
.anim-delay-7 { animation-delay: calc(var(--anim-stagger) * 7); }
.anim-delay-8 { animation-delay: calc(var(--anim-stagger) * 8); }
.anim-delay-9 { animation-delay: calc(var(--anim-stagger) * 9); }
.anim-delay-10 { animation-delay: calc(var(--anim-stagger) * 10); }

/* ── Load: progress bar fill ─────────────────────────────────────────────── */
@keyframes barFill {
    from { width: 0; }
}

.anim-bar-fill {
    animation: barFill var(--anim-bar-dur) var(--anim-ease-out) both;
    animation-delay: calc(var(--anim-stagger) * 2);
}

/* ── Hover: table rows ───────────────────────────────────────────────────── */
.anim-hover-row td {
    transition: background var(--anim-hover-dur) var(--anim-ease);
}

.anim-hover-row:hover td {
    background: var(--surface2);
}

/* ── Hover: activity items ───────────────────────────────────────────────── */
.anim-hover-item {
    transition: background var(--anim-hover-dur) var(--anim-ease);
    border-radius: var(--radius-sm);
    margin: 0 -8px;
    padding-left: 8px;
    padding-right: 8px;
}

.anim-hover-item:hover {
    background: var(--surface2);
}

/* ── Table row stagger (capped at 8 rows, rest appear instantly) ─────────── */
.anim-stagger-table tbody tr {
    animation: fadeUp var(--anim-fade-dur) var(--anim-ease-out) both;
    animation-delay: calc(var(--anim-stagger) * 8);  /* default: same as row 8 */
}
.anim-stagger-table tbody tr:nth-child(1) { animation-delay: calc(var(--anim-stagger) * 1); }
.anim-stagger-table tbody tr:nth-child(2) { animation-delay: calc(var(--anim-stagger) * 2); }
.anim-stagger-table tbody tr:nth-child(3) { animation-delay: calc(var(--anim-stagger) * 3); }
.anim-stagger-table tbody tr:nth-child(4) { animation-delay: calc(var(--anim-stagger) * 4); }
.anim-stagger-table tbody tr:nth-child(5) { animation-delay: calc(var(--anim-stagger) * 5); }
.anim-stagger-table tbody tr:nth-child(6) { animation-delay: calc(var(--anim-stagger) * 6); }
.anim-stagger-table tbody tr:nth-child(7) { animation-delay: calc(var(--anim-stagger) * 7); }
.anim-stagger-table tbody tr:nth-child(n+8) { animation-delay: calc(var(--anim-stagger) * 8); }

.anim-stagger-table tbody tr td {
    transition: background var(--anim-hover-dur) var(--anim-ease);
}
.anim-stagger-table tbody tr:hover td {
    background: var(--surface2);
}

/* ── Card/section stagger (for grids of cards) ──────────────────────────── */
.anim-stagger-grid > * {
    animation: fadeUp var(--anim-fade-dur) var(--anim-ease-out) both;
    animation-delay: calc(var(--anim-stagger) * 6); /* default cap */
}
.anim-stagger-grid > *:nth-child(1) { animation-delay: calc(var(--anim-stagger) * 1); }
.anim-stagger-grid > *:nth-child(2) { animation-delay: calc(var(--anim-stagger) * 2); }
.anim-stagger-grid > *:nth-child(3) { animation-delay: calc(var(--anim-stagger) * 3); }
.anim-stagger-grid > *:nth-child(4) { animation-delay: calc(var(--anim-stagger) * 4); }
.anim-stagger-grid > *:nth-child(5) { animation-delay: calc(var(--anim-stagger) * 5); }
.anim-stagger-grid > *:nth-child(n+6) { animation-delay: calc(var(--anim-stagger) * 6); }

/* ═══════════════════════════════════════════════════════════════════════════
   PREFERS-REDUCED-MOTION — disable all motion
   ═══════════════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-delay: 0ms !important;
        transition-duration: 0.01ms !important;
    }
}
