/* PEA Simple — Anti-copie léger
   Bloque la sélection/copie simple sans casser les formulaires. */
html.pea-anti-copy-enabled body,
html.pea-anti-copy-enabled body *:not(input):not(textarea):not(select):not(option):not([contenteditable='true']):not(.allow-copy):not(.allow-copy *) {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

html.pea-anti-copy-enabled img,
html.pea-anti-copy-enabled svg,
html.pea-anti-copy-enabled canvas {
  -webkit-user-drag: none;
  user-drag: none;
}

.pea-copy-guard-toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 999999;
  transform: translate(-50%, 18px);
  max-width: calc(100vw - 32px);
  padding: 12px 16px;
  border: 1px solid rgba(245, 203, 121, .32);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(13, 10, 24, .94), rgba(36, 18, 58, .92));
  box-shadow: 0 18px 60px rgba(0, 0, 0, .42), 0 0 32px rgba(150, 82, 255, .18);
  color: #f7e7bd;
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: -.01em;
  line-height: 1.25;
  pointer-events: none;
  opacity: 0;
  transition: opacity .22s ease, transform .22s ease;
}

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