@media print {
  table {
    width: 100% !important;
    table-layout: fixed;
    word-wrap: break-word;
  }

  td, th {
    white-space: normal !important;
    word-break: break-word;
  }

  /* Уменьшение размера шрифта для печати */
  body {
    font-size: 12px;
  }

  /* Принудительно растягивать контент */
  .t-container {
    max-width: 100% !important;
    padding: 0 !important;
  }

  /* Отключить ненужные элементы при печати */
  .t-header, .t-footer, .no-print {
    display: none !important;
  }
}
