﻿@media print {

    @page {
        size: A4 portrait;
        margin: 10mm;
    }

    html,
    body {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        background: white;
    }

        body * {
            visibility: hidden;
        }

    .report-layout,
    .report-layout * {
        visibility: visible;
    }

    .report-layout {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        background: white;
        overflow: visible;
    }
    .report-footer {
        page-break-inside: avoid;
    }
    .no-print {
        display: none !important;
    }
}
