/* ProSkill Anti-Copy & Screen Protection */
html, body {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  -webkit-touch-callout: none !important;
}

input, textarea, [contenteditable="true"] {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

img, svg, video, canvas {
  -webkit-user-drag: none !important;
  user-drag: none !important;
  -webkit-touch-callout: none !important;
}

#proskill-screen-curtain {
  display: none;
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background-color: #000000 !important;
  z-index: 2147483647 !important;
  pointer-events: all !important;
  cursor: none !important;
  opacity: 0;
  transition: opacity 0.05s ease-in-out;
}

@media print {
  html, body {
    display: none !important;
    visibility: hidden !important;
  }
}
