/* حماية واجهة مكتبة إرادة — لا تؤثر في النقر أو اللمس */
html, body, main, header, footer,
h1, h2, h3, p, span, small, b, strong, button, a, img {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

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

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

@media print {
  body > * { display: none !important; }
  body::after {
    content: "© جمعية إرادة التوحد — المحتوى غير مخصص للطباعة";
    display: block;
    padding: 3rem;
    text-align: center;
    font-family: Cairo, sans-serif;
    direction: rtl;
  }
}
