/* ═══════════════════════════════════════════════════════════
   print.css — applies ONLY to printed output (@media print).
   Driven by the Print Settings dialog via CSS variables set on
   :root. Has no effect on the on-screen web UI.
   ═══════════════════════════════════════════════════════════ */

@media print {

    body,
    .printable,
    .printable * {
        font-family: var(--print-font-family, 'Vazirmatn'), Tahoma, sans-serif !important;
        font-size: var(--print-font-size, 12pt) !important;
        color: var(--print-text-color, #000000) !important;
    }

    /* Hide on-screen chrome when printing */
    .mud-appbar,
    .mud-drawer,
    .mud-drawer-header,
    #print-page-style ~ * .no-print,
    .no-print {
        display: none !important;
    }
}
