@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');
/* === Modern Dark Theme Overrides (scoped) === */
html[data-theme="dark"] {
  color-scheme: dark;
}
html[data-theme="dark"] body {
  background: #0b1220;
  color: #e5e7eb;
}
/* Bootstrap common surfaces */
html[data-theme="dark"] .bg-light,
html[data-theme="dark"] .bg-body,
html[data-theme="dark"] .bg-body-tertiary,
html[data-theme="dark"] .navbar,
html[data-theme="dark"] .card,
html[data-theme="dark"] .modal-content,
html[data-theme="dark"] .dropdown-menu,
html[data-theme="dark"] .list-group-item {
  background-color: #111827 !important;
  color: #e5e7eb !important;
  border-color: #1f2937 !important;
}
html[data-theme="dark"] .border,
html[data-theme="dark"] .border-top,
html[data-theme="dark"] .border-bottom,
html[data-theme="dark"] .border-start,
html[data-theme="dark"] .border-end {
  border-color: #1f2937 !important;
}
/* Buttons */
html[data-theme="dark"] .btn-primary {
  background: linear-gradient(135deg,#3b82f6,#8b5cf6) !important;
  border: none !important;
  color: #fff !important;
}
html[data-theme="dark"] .btn-secondary,
html[data-theme="dark"] .btn-light {
  background: #0b1220 !important;
  color: #e5e7eb !important;
  border: 1px solid #263248 !important;
}
html[data-theme="dark"] .btn:hover {
  filter: brightness(1.1);
}
/* Links */
html[data-theme="dark"] a { color: #93c5fd; }
html[data-theme="dark"] a:hover { color: #bfdbfe; }
/* Inputs */
html[data-theme="dark"] input,
html[data-theme="dark"] select,
html[data-theme="dark"] textarea {
  background: #0f172a !important;
  color: #e5e7eb !important;
  border: 1px solid #1f2937 !important;
}
html[data-theme="dark"] input::placeholder,
html[data-theme="dark"] textarea::placeholder {
  color: #9ca3af !important;
}
/* Cards / shadows / radius */
html[data-theme="dark"] .card,
html[data-theme="dark"] .list-group-item,
html[data-theme="dark"] .modal-content {
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}
/* Footer */
html[data-theme="dark"] .site-footer {
  background: #0f172a !important;
  color: #9ca3af !important;
}
/* Headings & text */
html[data-theme="dark"] h1, html[data-theme="dark"] h2, html[data-theme="dark"] h3,
html[data-theme="dark"] h4, html[data-theme="dark"] h5, html[data-theme="dark"] h6 {
  color: #f3f4f6;
}
/* Nice hover effect for list items */
html[data-theme="dark"] .list-group-item:hover {
  background: #0b1220 !important;
  transform: translateY(-1px);
  transition: all .2s ease;
}
/* Badges / pills */
html[data-theme="dark"] .badge {
  background: #1f2937;
  color: #e5e7eb;
}
/* Utility */
html[lang="ar"] body { font-family: "Cairo", "Tajawal", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans Arabic", "Noto Naskh Arabic", sans-serif; }