/* لوحة التحكم — iPad والهاتف فقط (بدون تصغير بيانات العميل) */
html, body {
  -webkit-text-size-adjust: 100%;
  touch-action: manipulation;
}

@media (max-width: 1024px) {
  .select-none > div:first-child {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .h-screen {
    height: 100dvh;
  }
}

@media (max-width: 767px) {
  .h-screen {
    height: 100dvh;
    height: -webkit-fill-available;
  }

  .overflow-x-auto.scrollbar-hide {
    -webkit-overflow-scrolling: touch;
  }
}

@supports (padding: env(safe-area-inset-bottom)) {
  .h-screen {
    padding-bottom: env(safe-area-inset-bottom);
  }
}
