﻿@media print {
    .table th {
        background-color: #f2f2f2;
        text-align: center;
        font-weight: bold;
    }

    .table {
        page-break-inside: avoid;
        width: 100%;
    }

    thead {
        display: table-header-group;
    }

    .print-header {
        display: table-header-group;
    }

    .no-print {
        display: none;
    }
}
