/* Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&family=Tajawal:wght@400;500;700&display=swap');

body {
  font-family: 'Tajawal', sans-serif;
  background-color: #f3f4f6; /* gray-100 */
}

.font-cairo {
  font-family: 'Cairo', sans-serif;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.table-input {
    direction: ltr; /* Force numbers to be LTR even in RTL layout */
}

/* Modal styles */
#terms-modal {
    transition: opacity 0.3s ease;
}

#terms-section {
    transition: transform 0.3s ease;
    transform: scale(0.95);
}

#terms-modal:not(.hidden) #terms-section {
    transform: scale(1);
}