/**
 * Print Stylesheet
 * Minimal print styles
 */
@media print {
    body {
        background: white;
        color: black;
    }
    .no-print {
        display: none !important;
    }
}

