/* ── Biobaxy Website Protection CSS ── */
/* Add to your main style.css or include in header.php */

/* Disable text selection sitewide */
* {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Allow selection only in form inputs */
input, textarea, select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* Disable image drag */
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

/* Allow clicks on links/buttons with images */
a img, button img {
  pointer-events: auto;
}

/* Hide content when printing */
@media print {
  body * {
    visibility: hidden !important;
  }
  body::after {
    content: "© Biobaxy Technologies India LLP — Printing not permitted";
    visibility: visible !important;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: bold;
    color: #000;
  }
}
