﻿/* Print styles */
@media print {
    @page {
        size: A4 portrait;
        margin: 0.1cm;
    }

    body {
        zoom: 70%;
    }

    /* Hide screen-only elements */
    .no-print {
        display: none !important;
    }

    /* Print header styles - maximum compact */
    .print-header {
        display: block !important;
        text-align: center;
        margin-bottom: 1px;
        padding-bottom: 0.5px;
        border-bottom: 0.5px solid #000;
    }

        .print-header h2 {
            margin: 0;
            font-size: 9pt;
            font-weight: bold;
            color: #000;
        }

        .print-header p {
            margin: 0.5px 0 0 0;
            font-size: 7pt;
            color: #000;
        }

     /* Hide all FluentCards except the one with the table */
    fluent-card {
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        background: white !important;
    }

    /* Force backgrounds to print */
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
}
