/* =====================================================================
   A4 print stylesheet for TeachTools taakbladen (task overviews).
   Applied when the user presses "Afdrukken" or downloads the PDF.
   ===================================================================== */

@media print {
    /* Hide all non-printable chrome */
    .navbar,
    .sidebar,
    .modal,
    .modal-backdrop,
    .btn,
    nav[aria-label="breadcrumb"],
    .spinner-border {
        display: none !important;
    }

    /* A4 page setup */
    @page {
        size: A4 portrait;
        margin: 1.5cm 2cm;
    }

    body {
        font-family: "Segoe UI", Arial, sans-serif;
        font-size: 11pt;
        color: #000;
        background: #fff;
    }

    h1 {
        font-size: 18pt;
        margin-bottom: 0.4cm;
        border-bottom: 1pt solid #000;
        padding-bottom: 0.2cm;
    }

    small.text-muted {
        font-size: 9pt;
        color: #555 !important;
    }

    /* Task table */
    table {
        width: 100%;
        border-collapse: collapse;
        page-break-inside: avoid;
        margin-top: 0.5cm;
    }

    th,
    td {
        border: 0.5pt solid #666;
        padding: 4pt 6pt;
        text-align: left;
        vertical-align: top;
    }

    thead {
        background-color: #e8e8e8 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    thead th {
        font-weight: bold;
        font-size: 10pt;
    }

    tbody tr:nth-child(even) {
        background-color: #f7f7f7 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    /* Page footer */
    .print-footer {
        position: fixed;
        bottom: 0.5cm;
        right: 1cm;
        font-size: 8pt;
        color: #888;
    }
}
