/* منع تفاعل المستخدم مع الصور */
img {
  pointer-events: none !important;
  user-select: none !important;
  -webkit-user-drag: none !important;
  -webkit-user-select: none !important;
}

/* يمنع السحب */
img {
  -webkit-user-drag: none;
  user-drag: none;
}

/* إخفاء الصور عن التحديد */
* {
  user-select: none !important;
}