/* ==========================================================================
   مستشفى يمان فيوتشر الدولي - صنعاء (شارع حدة)
   ملف التنسيقات والأنماط المخصص الشامل (CSS3 Custom Styles)
   مجهز للتوافق 100% مع سيرفرات cPanel ودعم الوضع الليلي والنهاري الكامل
   ========================================================================== */

/* 1. القواعد العامة والتمرير السلس */
html {
  scroll-behavior: smooth;
  font-family: 'Tajawal', sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* الوضع الداكن (Default / Dark Mode) */
html.dark body {
  background-color: #020617;
  color: #f8fafc;
}

/* الوضع الفاتح / النهاري (Light Mode) */
html.light body, body {
  background-color: #f8fafc;
  color: #0f172a;
}

/* تخصيص ناعم للكروت في الوضع الفاتح */
html.light .bg-slate-900 {
  background-color: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 4px 15px -3px rgba(0, 0, 0, 0.05);
}

html.light .bg-slate-950 {
  background-color: #f8fafc;
  border-color: #e2e8f0;
}

/* 2. تحسين مظهر شريط التمرير (Scrollbar Styling) */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #020617;
}

html.light ::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #0f766e;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #14b8a6;
}

/* 3. تأثيرات الانتقالات والبطاقات (Cards & Hover FX) */
.card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 148, 136, 0.5);
  box-shadow: 0 12px 28px -5px rgba(13, 148, 136, 0.15);
}

/* 4. تخصيص خانات الاختيار بالحاسبة */
input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #0d9488;
  cursor: pointer;
}

/* 5. تأثيرات فتح النوافذ المنبثقة (Modal Fade Animation) */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.25s ease-out forwards;
}

/* 6. تحسين شريط التبويبات للوحة التحكم */
.admin-tab-btn.active {
  background-color: #0d9488 !important;
  color: #ffffff !important;
  font-weight: 800 !important;
}

/* 7. تحسين ظهور النموذج للطباعة */
@media print {
  body {
    background: white !important;
    color: black !important;
  }
  header, footer, .fixed, #adminModal {
    display: none !important;
  }
}

