@media print {
    body * {
        visibility: hidden; /* Hide everything initially */
    }

    #price_table, #price_table * {
        visibility: visible !important; /* Ensure the table and its contents are visible */
    }

    #price_table {
        width: 100%; /* Ensure full width for print */
        border-collapse: collapse; /* Ensure the table collapses properly */
    }

    #price_table th, #price_table td {
        border: 1px solid black !important; /* Add borders for better visibility */
    }

    #printButton, #closeButton, .non-printable {
        display: none !important; /* Hide buttons or other elements not meant for print */
    }

    /* Modal specific styling for printing */
    .modal-content {
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .bg-gray-500 {
        background-color: white !important; /* Ensure no gray background for printing */
    }
}
