@media print {
    header, nav, .actions, button, .no-print {
        display: none !important;
    }

    body {
        background: white;
        color: black;
        font-size: 10pt;
    }

    main {
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    table {
        page-break-inside: auto;
        font-size: 9pt;
    }

    tr {
        page-break-inside: avoid;
    }

    @page {
        margin: 1cm;
        size: landscape;
    }
}
