/* Le Monde de Jeddi - protection anti-copie douce - Version 0.81 */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input,
textarea,
select,
button,
[contenteditable="true"] {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
}

#jeddi-protection-message {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  max-width: 720px;
  width: calc(100% - 32px);
  padding: 14px 18px;
  border: 2px solid #8b7355;
  border-radius: 12px;
  background: #f4e8d0;
  color: #2a1410;
  font-family: Georgia, serif;
  font-size: 0.98rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 99999;
}

#jeddi-protection-message.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
