﻿@media print {

    /* use print_landscape and print_portrait css file to set the page orientation */

    .page-break {
        page-break-before: always; /* Forces a page break before this div */
        break-before: always; /* Ensures compatibility with Firefox */
    }

    /* To avoid breaking the first page specifically */
    .page-break:first-child {
        page-break-after: auto !important; /* Allows the first child to print normally */
    }

    .chart-wrapper {
        width:100% !important;
    }

    .print-container {
        border:none !important;
        padding:0px !important;
    }

    .keep-together {
        page-break-inside: avoid;
        break-inside: avoid;
        width: auto !important;
    }


    body > .skiptranslate {
        display: none;
    }

    a {
        text-decoration: none !important;
        color: black !important;
    }

    .mtss-visible-on-print-only {
        display: inline-block !important;
        visibility: visible !important;
       
    }
  

}


