/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 07 2025 | 04:43:31 */
@media print {
  /* Force everything on the page to be hidden */
  body * {
    visibility: hidden !important;
  }
  
  /* Make ONLY the invoice popup and its contents visible */
  .lp_popup_preview_invoice, 
  .lp_popup_preview_invoice * {
    visibility: visible !important;
  }
  
  /* Position the invoice correctly for printing */
  .lp_popup_preview_invoice {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
  }
  
  /* Hide the close button and footer area when printing */
  .modal-header .close, .modal-footer {
    display: none !important;
  }
}