﻿@media screen {
  div .receipt-line-footer {
    display: none;
  }
}
@media print {
  body { margin: 20px; }
  label.control-label { margin-top: 6px; }
  div.receipt-line-footer { position: fixed; width: 100%; height: 0; bottom: 5px; border-top: 5px solid #dd1f2e; display: block; }
  table { page-break-after: auto; }
  tr { page-break-inside: avoid; page-break-after: auto; }
  td { page-break-inside: avoid; page-break-after: auto; }
  thead { display: table-header-group; }
  tfoot { display: table-footer-group; }

    /* Ngắt trang trước hàng cụ thể */
    tr.break-page { page-break-before: always; page-break-after: always; }
    /* Đảm bảo hàng đó chiếm toàn bộ trang */
    tr.break-page td 
    {
        height: calc(100vh - 1px); /* Chiều cao toàn bộ trang */
        vertical-align: middle; /* Canh giữa nội dung */
        text-align: center; /* Canh giữa nội dung */
    }
}
@page {}
