﻿html.content-protected body,
html.content-protected body *:not(input):not(textarea):not(select):not(option) {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

html.content-protected img,
html.content-protected video {
  -webkit-user-drag: none;
  user-drag: none;
}

.copy-protect-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 99999;
  max-width: min(420px, calc(100vw - 32px));
  padding: 13px 18px;
  border-radius: 14px;
  color: #fff;
  background: rgba(0, 31, 63, .94);
  box-shadow: 0 18px 46px rgba(0, 31, 63, .28);
  font: 800 14px/1.35 Manrope, Inter, Arial, sans-serif;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 14px);
  transition: opacity .2s ease, transform .2s ease;
}

.copy-protect-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

