/* Print Stylesheet for lakshaywalia.com */
@media print {
    /* Hide non-essential elements */
    nav, footer, .status-bar, .ambient-blobs, canvas, .blob, video, .controls, .btn, .glass-panel {
        display: none !important;
    }

    /* Reset background and text for print */
    body, html {
        background: #fff !important;
        color: #000 !important;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    * {
        box-shadow: none !important;
        text-shadow: none !important;
        background-color: transparent !important;
        background-image: none !important;
        border-color: #000 !important;
        color: #000 !important;
    }

    /* Show link destinations */
    a:link, a:visited {
        text-decoration: underline;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 90%;
        color: #333 !important;
    }

    /* Force single column layout */
    .grid, .flex, section, main, div {
        display: block !important;
        width: 100% !important;
        margin-bottom: 1rem !important;
    }

    /* Page breaks */
    h2, h3 {
        page-break-after: avoid;
    }
    
    img, svg {
        page-break-inside: avoid;
        max-width: 100% !important;
    }
}
