﻿@media print {
    @page {
        size: A4; 
       
    }

    .page-break {
        page-break-before: always;
        break-before: page;
    }

   
    .print-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        text-align: center;
        background-color: white;
        padding: 10px 0;
        font-size: 12px;
    }

   
}
