/* Hide everything by default when printing */
@media print {
    body * {
        visibility: hidden;
    }

    /* Make the print-container and its children visible */
    .print-container, .print-container * {
        visibility: visible;
    }

    /* Position the print-container at the top of the page */
    .print-container {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }

    /* Optional: Style the table for better print layout */
    table {
        width: 100%;
        border-collapse: collapse;
    }

    th, td {
        border: 1px solid #ddd;
        padding: 8px;
    }

    th {
        background-color: #f2f2f2;
    }

    /* Hide elements that shouldn't be printed inside the table */
    .no-print, .no-print * {
        display: none !important;
    }
}
