body,
body :not(input):not(textarea):not(select):not([contenteditable="true"]):not([data-fc-copy-allowed]):not(a[href^="tel:"]):not(a[href^="mailto:"]) {
  -webkit-user-select: none;
  user-select: none;
}

body input,
body textarea,
body select,
body [contenteditable="true"],
body [data-fc-copy-allowed],
body a[href^="tel:"],
body a[href^="mailto:"] {
  -webkit-user-select: text;
  user-select: text;
}

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

.fc-copy-protection-status {
  position: fixed;
  inset-inline-start: 50%;
  inset-block-end: max(24px, calc(env(safe-area-inset-bottom) + 16px));
  z-index: 100000;
  max-inline-size: min(90vw, 420px);
  padding: 12px 18px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 999px;
  background: #0e1b33;
  box-shadow: 0 12px 32px rgb(0 0 0 / 24%);
  color: #fff;
  font: 700 14px/1.5 "Tajawal", Arial, sans-serif;
  text-align: center;
  transform: translateX(50%);
  pointer-events: none;
}

html[dir="ltr"] .fc-copy-protection-status {
  transform: translateX(-50%);
}

.fc-copy-protection-status[hidden] {
  display: none !important;
}

@media (max-width: 560px) {
  .fc-copy-protection-status {
    inset-block-end: max(16px, calc(env(safe-area-inset-bottom) + 12px));
    padding: 10px 14px;
    font-size: 13px;
  }
}
