/* ================================
   KAKSHA CONTENT PROTECTION CSS
================================ */

/* Disable text selection globally */
body {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

/* Allow selection only in inputs */
input, textarea {
  user-select: text !important;
}

/* Prevent image dragging */
img {
  pointer-events: none;
}

/* Optional: protect background images too */
.protected-img {
  pointer-events: none;
}

/* Optional watermark overlay class */
.watermark {
  position: absolute;
  bottom: 10px;
  right: 10px;
  opacity: 0.5;
  font-size: 14px;
  color: white;
}

/* ===== Content Protection ===== */

/* Disable text selection */
body{
  user-select:none;
  -webkit-user-select:none;
  -ms-user-select:none;
}

/* Allow inputs */
input, textarea{
  user-select:text;
}

/* Prevent image dragging */
img{
  -webkit-user-drag:none;
  user-select:none;
}

/* Optional: prevent image pointer events */
img.protected{
  pointer-events:none;
}