/* Kosari Academy Stealth Security CSS */

/* Prevent Text Selection & Touch Callouts across all pages */
body, html {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  -webkit-touch-callout: none !important;
}

/* Allow text selection inside forms & input fields so users can type */
input, textarea, select, [contenteditable="true"] {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

/* Prevent image & video dragging, context menu, and save callouts */
img, video, canvas, svg {
  -webkit-user-drag: none !important;
  user-drag: none !important;
  -webkit-touch-callout: none !important;
}

/* Hide video download & remote playback buttons silently */
video::-internal-media-controls-download-button,
video::-webkit-media-controls-download-button {
  display: none !important;
}
video::-webkit-media-controls-enclosure {
  overflow: hidden !important;
}

/* Hide content silently when attempting to print or PDF capture */
@media print {
  html, body {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}
