/*
 * Mustafa Cyber Tools — Dark Cyber Theme
 * Global plugin stylesheet. Individual tools are self-contained.
 * This file: wrapper resets, admin bar offset, print utilities.
 */

/* ── Base reset for plugin wrappers ───────────────────────────────── */
.mct-tool-wrap,
.cy-gate-w,
.cy-hub,
.cy-px,
.cy-acc {
    color-scheme: dark !important;
    box-sizing: border-box;
}

/* Ensure tool iframes / embeds inherit dark bg */
.mct-tool-wrap {
    background: #07090f !important;
    display: block;
    width: 100%;
}

/* Override any Kadence / theme light-mode variables inside our wrappers */
.mct-tool-wrap,
.mct-tool-wrap * {
    --global-palette1: #07090f !important;
    --global-palette2: #0d1117 !important;
    --global-palette3: #141b26 !important;
    --global-palette4: #e8eaf0 !important;
    --global-palette5: #8892a4 !important;
    --global-palette6: #556070 !important;
    --global-palette7: #3b82f6 !important;
    --global-palette8: #07090f !important;
    --global-palette9: #07090f !important;
}

/* ── Admin toolbar clearance ──────────────────────────────────────── */
.admin-bar .cy-hero { padding-top: 128px !important; }
.admin-bar .cy-page { padding-top: 0; }

/* ── Score colours (used in JS-generated results HTML) ───────────── */
.c-hi  { color: #ef4444 !important; }
.c-med { color: #f59e0b !important; }
.c-lo  { color: #10b981 !important; }

/* ── Print / PDF utilities ────────────────────────────────────────── */
@media print {
    * {
        print-color-adjust: exact !important;
        -webkit-print-color-adjust: exact !important;
    }
    .score-panel,
    .step-bar,
    .form-nav,
    .res-acts,
    .eyebrow,
    .t-tag,
    .tool-meta {
        display: none !important;
    }
    .pdf-out {
        display: block !important;
    }
    .cy-tool,
    .mct-tool-wrap {
        background: #fff !important;
        color: #000 !important;
    }
}
