/* ── Season Report — Print Styles ──────────────────────────────────── */

@media print {
    /* Hide non-print elements */
    .no-print, .navbar, .footer, .mobile-menu, .vision180-footer,
    .report-actions, .back-link, .report-header { display: none !important; }

    body {
        font-size: 11pt;
        color: #000;
        background: #fff;
    }

    .main-content { padding: 0 !important; margin: 0 !important; }

    .report-page {
        max-width: 100%;
        padding: 0;
    }

    .report-title-card {
        background: #c41e2a !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
        color: #fff !important;
        padding: 1.5cm;
        page-break-after: auto;
    }
    .report-title-card h1 { font-size: 24pt; }

    .report-section {
        border: none;
        box-shadow: none;
        padding: 0.5cm 0;
        page-break-inside: avoid;
    }

    .report-table {
        font-size: 9pt;
    }
    .report-table th, .report-table td {
        padding: 3pt 5pt;
        border-bottom: 0.5pt solid #ccc;
    }
    .report-table th { border-bottom: 1pt solid #333; }
    .report-table tr:first-child td { font-weight: bold; }

    .report-records {
        display: flex;
        gap: 0.5cm;
    }
    .report-record {
        border: 0.5pt solid #ccc;
        padding: 0.3cm;
        background: #f9f9f9 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    /* Page margins */
    @page {
        size: A4;
        margin: 1.5cm;
    }

    /* Force colors */
    .report-section h2 { color: #c41e2a !important; }
}
