@charset "UTF-8";
/* Print Stylesheet */

@media print {

    /* Hide the navigation */
    nav,
    .header {
        display: none !important;
    }

    /* Remove the top margin added to account for the fixed header */
    .content {
        margin-top: 0;
        padding: 0;
        font-size: 12px;
    }

    /* Reset body */
    body {
        margin: 0;
        font-family: Aptos, sans-serif;
        color: #000000;
        background: #ffffff;
    }

    h1 {
        font-size: 18px;
        font-weight: normal;
    }

    /* Remove box shadows */
    * {
        box-shadow: none !important;
    }

    /* Don't print delete buttons */
    .btn-delete {
        display: none !important;
    }

    /* Don't print search highlights */
    .highlight {
        background-color: transparent;
    }

    /* Make links show as plain text */
    a {
        text-decoration: none;
        color: #000000;
    }

    /* Avoid breaking table rows across pages */
    tr {
        page-break-inside: avoid;
    }

}
