/* Styles for screen display */
.no-print {
    /* Optional: add screen-specific styles here */
    background-color: lightgray;
    padding: 10px;
}

/* Styles for print output */
@media print {
    .no-print {
        display: none !important; /* Hides the element and removes its space */
        /* or use visibility: hidden; if you want to keep the element's space on the page */
    }
}
