@media print {
    /* Hide navigation, header, footer, and interactive elements */
    .top-nav-bar,
    .mud-appbar,
    .mobile-nav-drawer,
    .mud-drawer,
    nav,
    footer,
    button,
    .mud-button,
    .mud-chip-set,
    .mud-table-pager,
    .no-print {
        display: none !important;
    }

    /* Ensure content takes full width */
    .mud-container {
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Clean paper styling for print */
    .mud-paper {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }

    /* Ensure good contrast */
    body {
        color: #000 !important;
        background: #fff !important;
    }
}
