
/* ===== Copy Guard: text selection / image drag protection ===== */
html, body, body *{
  -webkit-user-select:none !important;
  -moz-user-select:none !important;
  -ms-user-select:none !important;
  user-select:none !important;
}
img, svg, picture, canvas{
  -webkit-user-drag:none !important;
  user-drag:none !important;
}
a, button, input, textarea, select, label{
  -webkit-user-select:auto !important;
  user-select:auto !important;
}
input, textarea{
  -webkit-user-select:text !important;
  user-select:text !important;
}
