@media print {
    /* Hide navigation, header, and footer */
    .header {
        display: none;
    }

    header {
        display: none;
    }

    .clemson-toolbar {
        display: none;
    }

    /* hide full url */
    a[href]:after {
    content: none !important;
    }

    /* hide profile image */
    .profile {
        display: none;
    }

    /* hide filters at top */
    #div-filter {
        display: none;
    }
    #dept-filter {
        display: none;
    }
    #building-filter {
        display: none;
    }

    /* Adjust font and color */
    body {
        font-family: 'Times New Roman', serif;
        color: #000;
        background-color: #fff;
        font-size: 12px;
    }

    /* Control page breaks */
    h1 {
        page-break-before: always;
    }

    /* Set page margins */
    @page {
        margin: 2cm;
    }
}
