/* Shipping Ninjas — Print Styles for 4x6 Thermal */

@media print {
  @page {
    size: 4in 6in;
    margin: 0.15in;
  }

  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 11px;
    color: #000000;
    background: #ffffff;
  }

  /* Hide everything except the print target */
  body > * {
    display: none;
  }

  .print-target {
    display: block !important;
  }

  /* No page breaks inside labels */
  .label {
    page-break-inside: avoid;
  }
}
