/* =========================================================
   Online Label Maker — Print styles
   Only the .odlm-sheet prints.
   ========================================================= */

@media print{
  @page{ size:A4 portrait; margin:0; }

  html, body{
    background:#fff !important;
    margin:0 !important;
    padding:0 !important;
    height:auto !important;
    overflow:visible !important;
  }

  /* Hide everything on the page */
  body *{ visibility:hidden !important; }

  /* Show only the label sheet and its contents */
  #odlm-app .odlm-sheet,
  #odlm-app .odlm-sheet *{ visibility:visible !important; }

  /* Place the sheet at the top-left of the printed page at real A4 size */
  #odlm-app .odlm-sheet{
    position:absolute !important;
    top:0 !important;
    left:0 !important;
    margin:0 !important;
    transform:none !important;
    box-shadow:none !important;
    width:210mm !important;
    height:297mm !important;
    background:#fff !important;
    z-index:9999999 !important;
  }

  /* Remove dashed cut-guides to save ink (keep subtle) */
  #odlm-app .odlm-slot::after{
    border:0.4pt dashed #dfe6ee !important;
  }

  /* Prevent colour-adjust issues */
  #odlm-app .odlm-sz{
    -webkit-print-color-adjust:exact;
    print-color-adjust:exact;
  }
}