/* Styles specifically for printing */
body {
    margin: 0;
    font-size: 12pt;
    color: black;
    background-color: white;
}
h1, p {
    display: none; /* Hide elements not needed in print */
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0;
}
th, td {
    border: 1px solid black; /* Stronger borders for print */
    padding: 5px;
    font-size: 10pt;
}
button {
    display: none; /* Hide the print button itself */
}