/* Demo Protection Styles */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Allow selection in form inputs */
input, textarea, select, .form-control, .dataTables_filter input {
  -webkit-user-select: text !important;
  user-select: text !important;
}
@media print {
  body { display: none !important; }
}
img { pointer-events: none; }
