/* Main Styles */
* {
  box-sizing: border-box;
}
:root {
  --primary-green: #155638;
  --primary-green-dark: #0f3d28;
  --primary-green-light: #1e603f;
  --text-gray: #4a5462;
  --text-dark: #111726;
  --text-light: #6a7280;
  --bg-gray: #f9fafa;
  --border-gray: #e4e7eb;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-green-dark);
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Tajawal', sans-serif;
  /* direction: rtl; */
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
  background: #0f3d26;
}

/* Focus styles */
input:focus,
textarea:focus,
button:focus {
  outline: 2px solid #155638;
  outline-offset: 2px;
}

/* Smooth transitions */
* {
  transition: all 0.2s ease-in-out;
}

/* RTL specific adjustments */
[dir="rtl"] .space-x-reverse > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 1;
  margin-right: calc(var(--tw-space-x) * var(--tw-space-x-reverse));
  margin-left: calc(var(--tw-space-x) * calc(1 - var(--tw-space-x-reverse)));
}
