/* ============================================================
   print.css — @media print rules only.
   Screen styles for the PDF preview shell and the invoice
   action bar live in app.css (section: DOCUMENT PREVIEW SHELL).
   Served as: _content/Basis.Shared/css/print.css
   ============================================================ */

/* ── Print: hide app chrome ─────────────────────────────────── */
@media print {
    .app-header,
    .app-sidebar,
    .app-footer,
    .mobile-overlay,
    .inv-bar,
    .inv-screen-only,
    .page-header {
        display: none !important;
    }

    .app-body-row {
        display: block !important;
    }

    .app-content,
    .app-content-inner {
        padding: 0 !important;
        margin: 0 !important;
        overflow: visible !important;
    }

    .doc-preview-wrap {
        background: white !important;
        padding: 0 !important;
        display: block !important;
        overflow: visible !important;
    }
}
