/* Print-specific styles */
@media print {

    /* Hide the header and footer elements */
    header,
    footer {
        display: none;
    }

    /* Set a narrower page width and adjust margins */
    body {
        width: 80%;
        margin: 0 auto;
    }

    /* Increase the font size of the main content */
    main {
        font-size: 1.2em;
    }

    /* Hide the background color and images */
    body,
    img {
        background: none;
    }

    /* Remove underlines from links */
    a:link,
    a:visited {
        text-decoration: none;
    }
}

/* Styles for tables and images for printing */
/*@media print {
    table {
        border-collapse: collapse;
        width: 100%;
        margin-bottom: 1em;
    }

    table th,
    table td {
        padding: 0.5em;
        border: 1px solid #ccc;
    }

    table th {
        background-color: #eee;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}*/