@media print {
    @page {
        size: A4 landscape; /* Landscape orientation */
        margin: none !important;
    }

    #printableArea {
        width: 100%;
        height: 100%;
    }

    /* Hide print button */
    #noprint {
        display: none !important;
    }

    body, html {
        margin: 0;
        padding: 0;
        background-color: white !important;      
        font-size: 12px !important; 
        font-family: "Helvetica-Reg", sans-serif !important;
        color: black !important;
    }
    h2,h5{
        font-family: "Helvetica-Reg", sans-serif !important;
        font-weight: bold;
        font-size: 12px;
    }
    .container, .content-blank {
        width: 100%;
    }

    .badge {
        display: inline !important;
        border: 0;
    }
    .titlebg{
        background-color: white !important;
    }
 
    .left-div{
        margin-right: 50px;
    }


    /* Ensure Detail Ticket Breakup table fits within one page */
    .detail-ticket-table {
        width: 100%;
        table-layout: fixed; /* Fixed table layout for even column widths */
    }

    /* Reduce padding and margins for table cells */
    .detail-ticket-table th, .detail-ticket-table td {
        padding: 3px;
        margin: 0;
        line-height: 1; /* Tighter line spacing */
    }
    
 
    .printed-top-border {
        border-top: 2px dashed #0771c7; /* Adjust color and thickness as needed */
    }
    .bar-title {
        font-weight: 600;
        font-size: 16px;
    }
}