/* ============================================================
   SITE SECURITY CSS SHIELD  |  Do Not Remove
   ============================================================ */

/* Disable text selection globally */
*, *::before, *::after {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  -webkit-touch-callout: none !important;
}

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

/* Prevent highlight on tap (mobile) */
* {
  -webkit-tap-highlight-color: transparent !important;
}

/* Block print media – hide everything when printing */
@media print {
  html, body {
    display: none !important;
    visibility: hidden !important;
  }
}
