/* ==========================================================================
   KINGSTER Print Stylesheets
   Format A4 GST Tax Invoices and 4x6 Thermal Barcode Shipping & Box Labels
   ========================================================================== */

@media print {
  body {
    background-color: #ffffff !important;
    color: #000000 !important;
    font-size: 12pt;
  }

  .no-print, .site-header, .site-footer, .admin-sidebar, .admin-topbar, .modal-backdrop, .btn {
    display: none !important;
  }

  /* Page container */
  .printable-document {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* ------------------------------------------------------------------------
     A4 GST TAX INVOICE FORMAT
     ------------------------------------------------------------------------ */
  .invoice-a4-page {
    width: 210mm;
    min-height: 297mm;
    padding: 15mm;
    margin: auto;
    background: #fff;
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 9.5pt;
    line-height: 1.35;
    border: 1px solid #333;
    page-break-after: always;
  }

  .invoice-header-table {
    width: 100%;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }

  .invoice-title {
    font-size: 16pt;
    font-weight: bold;
    text-align: right;
    text-transform: uppercase;
  }

  .invoice-parties-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    border: 1px solid #999;
    padding: 10px;
    margin-bottom: 15px;
  }

  .invoice-items-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
  }

  .invoice-items-table th {
    background-color: #f0f0f0 !important;
    border: 1px solid #000;
    padding: 6px 8px;
    font-size: 8.5pt;
    font-weight: bold;
    text-align: left;
  }

  .invoice-items-table td {
    border: 1px solid #999;
    padding: 6px 8px;
    font-size: 8.5pt;
  }

  .invoice-totals-table {
    width: 45%;
    margin-left: auto;
    border-collapse: collapse;
    margin-bottom: 20px;
  }

  .invoice-totals-table td {
    padding: 4px 8px;
    border: 1px solid #999;
    font-size: 9pt;
  }

  .invoice-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #999;
  }

  /* ------------------------------------------------------------------------
     4x6 THERMAL SHIPPING & FBA BOX LABEL
     ------------------------------------------------------------------------ */
  .thermal-4x6-label {
    width: 4in;
    height: 6in;
    padding: 0.2in;
    margin: auto;
    background: #fff;
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    border: 2px solid #000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    page-break-after: always;
  }

  .thermal-carrier-header {
    border-bottom: 2px solid #000;
    padding-bottom: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .thermal-barcode-box {
    text-align: center;
    padding: 10px 0;
    border-bottom: 2px solid #000;
  }

  .thermal-barcode-font {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14pt;
    font-weight: bold;
    letter-spacing: 2px;
  }

  .thermal-address-box {
    padding: 8px 0;
    border-bottom: 1px solid #000;
    font-size: 10pt;
  }
}
