@media print {
    @page {
        margin: 50px;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        background-color: white !important;
        color: black !important;
    }

    body {
        margin: 0;
        padding: 0;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        background-color: white !important;
        color: black !important;
        overflow: visible !important; /* Ensure no clipping occurs */
    }

    .hide-on-print,
    aside,
    nav,
    header,
    .fi-header {
        display: none !important;
    }

    .fi-sidebar-close-overlay {
        display: none !important;
    }

    .fi-sidebar {
        display: none !important; /* Hide the sidebar explicitly */
    }

    .fi-content {
        margin-left: 0 !important; /* Reset margin if sidebar shifts content */
    }

    .fi-ta-text {
        border: 0 !important;
        padding: 5px 5px 5px 15px !important;
    }

    * {
        box-shadow: none !important; /* Remove box-shadows for better print results */
    }
}
