@media print {
    * {
        color: black !important; /* Force all text to be black */
        background: none !important; /* Remove any background color */
    }
    body {
        font-family: Arial, sans-serif;
        color: black;
    }
    .no-print {
        display: none !important; /* Hide unnecessary elements */
    }
    .print-header {
        font-size: 20px;
        font-weight: bold;
    }
}