﻿/* Styles for print */
@media print {
    /* Hide the main menu */
    .main-menu {
        display: none;
    }

    html {
        font-size: 10px;
    }

    h1 {
        font-size: 12pt;
        margin-bottom: 0.5em;
        font-weight: bold;
    }
    /* Ensure only the page content is visible */
    body {
        margin: 0;
        padding: 0;
    }

    header {
        display: none;
    }

    footer {
        display: none;
    }

    .page-content {
        display: block;
    }
}