/* PRINT STYLESHEET */
@media print {
    /* SET BODY MARGIN PADDING AND COLORS */
    body {
        margin: 0 !important;
        padding: 3em !important;
        background: white !important;
        color: black !important;
    }
    /* ADD THIS CLASS TO EVERYTHING WE NEVER WANT TO PRINT */
    .d-print-none {
        display: none !important;
    }
    /* HIDE TOOLTIPS */
    .tooltip {
        display: none !important;
    }
    /* PRINT MODE STANDARD: HIDE ONLY THE SPECIAL CONTENT */
    body.print-mode-standard .print-mode-special-content {
        display: none !important;
    }
    /* PRINT MODE SPECIAL: HIDE EVERYTHING EXCEPT THE SPECIAL CONTENT AND ITS PARENTS */
    body.print-mode-special *:not(.print-mode-special-content):not(script):not(style) {
        display: none;
    }

    /* PRINT MODE SPECIAL: FORCE THE SPECIAL CONTENT TO SHOW */
    body.print-mode-special .print-mode-special-content {
        display: block !important;
    }

    /* PRINT MODE SPECIAL: FORCE ANY CHILDREN OF THE SPECIAL CONTENT TO REMAIN VISIBLE */
    body.print-mode-special .print-mode-special-content * {
        display: inherit !important;
    }

    /* PRINT MODE SPECIAL: FORCE ANY PARENT OF THE SPECIAL CONTENT TO REMAIN VISIBLE */
    body.print-mode-special *:has(.print-mode-special-content) {
        display: block !important;
    }

}