@media print {
    /* Hide navigation and non-essential elements */
    nav, footer, button, .settings-btn {
        display: none !important;
    }

    /* Ensure proper page breaks */
    .border-b {
        page-break-after: auto;
    }

    /* Remove background colours for printing */
    body, html {
        background: white !important;
        color: black !important;
    }

    /* Ensure all text is black for readability */
    * {
        color: black !important;
        background: white !important;
        border-color: #e5e7eb !important;
    }

    /* Keep section borders visible */
    .border-nebula {
        border-color: #e5e7eb !important;
    }

    /* Hide decorative elements */
    .card-hover::before,
    .card-hover::after {
        display: none !important;
    }
}