@media print {
    @page {
        size: A4 landscape;
        margin: 0;
        padding: 12mm;
    }

    body {
        background: #fff;
        font-size: 12pt;
        margin: 0;
        padding: 0;
    }

    .hide-on-print {
        display: none !important;
    }

    header,
    footer {
        display: none !important;
    }

    .print-questionary {
        padding: 0;
        gap: 0;
    }

    .print-questionary__tables {
        gap: 0;
    }

    .print-questionary__status {
        border: none;
        padding: 0 0 12px;
        background: transparent;
        display: none;
    }

    .print-questionary-table {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
        min-height: calc(210mm - 24mm);
        display: flex;
        flex-direction: column;
        page-break-after: always;
        break-after: page;
    }

    .print-questionary-table:last-child {
        page-break-after: auto;
    }

    .print-questionary-table table {
        flex: 1;
        height: 100%;
    }
}