/* print.css */
/* This will prevent the nav icons from showing on a print page */

.top-nav {
    display: none !important;
}

#main-navigation {
    display: none !important;
}

/* If the icons have specific classes, you can target them too */
.nav-icon {
    display: none !important;
}

/* Hide elements with the do-not-show-on-print class */
/* I use this to hide elements on a report page, such as a button, so they do not show up. */
.do-not-show-on-print {
    display: none !important;
}
