/* Shared print styles for SportsDayPro
   Hides MudBlazor chrome and common UI elements when printing.
   Page-specific print rules remain in each .razor file. */

@media print {
    .no-print,
    .mud-appbar,
    .mud-drawer,
    .mud-drawer-overlay,
    .mud-overlay,
    .mud-snackbar-provider,
    nav {
        display: none !important;
    }

    .mud-paper {
        box-shadow: none !important;
    }

    body {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}

/* Hide print-only elements on screen */
@media screen {
    .print-only {
        display: none;
    }
}
