html.csp-content-shield-active {
  -webkit-touch-callout: none;
}

html.csp-content-shield-active img[data-csp-protected="1"] {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

html.csp-no-select body {
  -webkit-touch-callout: none;
}

html.csp-no-select body *:not(input):not(textarea):not(select):not(option):not([contenteditable="true"]):not(.allow-copy):not(.allow-copy *):not(.allow-download):not(.allow-download *) {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.csp-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(12px);
  background: rgba(17, 17, 17, 0.94);
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  padding: 10px 14px;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 999999;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  max-width: calc(100vw - 32px);
  text-align: center;
}

.csp-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
