/* Print only the current report or document. Navigation and page controls never appear in PDF. */
@media print {
    @page { margin: 10mm; size: auto; }

    html, body {
        background: #fff !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .erp-sidebar, .erp-topbar, .erp-sidebar-backdrop, .erp-menu-toggle,
    .no-print, button, .btn, .dropdown, form, .alert {
        display: none !important;
    }

    .erp-wrapper, .erp-content, .erp-main {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #fff !important;
    }

    .erp-main .card, .erp-main .card-body { box-shadow: none !important; }
    .erp-main .table-responsive { overflow: visible !important; }
    .erp-main table { width: 100% !important; font-size: 10pt; }
    .erp-main thead { display: table-header-group; }
    .erp-main tr { break-inside: avoid; page-break-inside: avoid; }
}
