/* ============================================
   HÒN TẰM BOOKING RECEIPT SYSTEM
   Print Styles
   ============================================ */

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

  /* Show only the receipt print area and all its children */
  .receipt-print,
  .receipt-print * {
    visibility: visible;
  }

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

  /* Hide non-printable elements */
  .no-print {
    display: none !important;
  }

  /* Hide UI chrome */
  .sidebar,
  .filter-bar,
  .btn,
  button,
  .sidebar-toggle,
  .sidebar-overlay,
  .toast-container,
  .modal-overlay,
  .steps-indicator,
  .page-header .page-actions {
    display: none !important;
  }

  /* Ensure QR code prints at readable size */
  .receipt-print .qr-code-img {
    max-width: 200px;
    height: auto;
  }

  /* A4 page setup */
  @page {
    margin: 10mm 15mm;
    size: A4;
  }
}
