﻿/* print.css - keep it minimal and specific to printing */
@page {
    size: landscape;
    margin: 10mm;
}

/* base for print */
body {
    font-family: Arial, sans-serif;
    font-size: 10pt;
    -webkit-print-color-adjust: exact;
}

/* table rules for print */
.table, table {
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed;
}

    .table th, .table td, .time-group {
        border: 2px solid #000;
        padding: 4px;
        white-space: nowrap;
        word-break: keep-all;
        font-size: 9pt;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: middle;
    }

/* avoid splitting rows across pages */
tr {
    page-break-inside: avoid;
}
