.protected-content.protection-no-select {
  -webkit-user-select: none;
  user-select: none;
}

.protected-content.protection-no-select input,
.protected-content.protection-no-select textarea,
.protected-content.protection-no-select select,
.protected-content.protection-no-select [contenteditable="true"],
.protected-content.protection-no-select .copy-allowed {
  -webkit-user-select: text;
  user-select: text;
}

.protected-content.protection-active img {
  -webkit-user-drag: none;
}

.content-protection-toast {
  position: fixed;
  z-index: 10000;
  left: 50%;
  bottom: max(24px, env(safe-area-inset-bottom));
  transform: translate(-50%, 14px);
  max-width: min(88vw, 520px);
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(15, 34, 52, .94);
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

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