/* Base Styles */
body { font-family: 'Inter', sans-serif; }
.font-bengali { font-family: 'Hind Siliguri', sans-serif; }
html { scroll-behavior: smooth; }

/* Mobile Menu Animations */
#mobile-menu { transition: transform 0.3s ease-in-out; }
.menu-hidden { transform: translateX(100%); }
.menu-visible { transform: translateX(0); }

/* Loading Skeleton Animations */
#loading-skeleton { transition: opacity 0.5s ease-out; }
.fade-out { opacity: 0; pointer-events: none; }

/* Custom Scrollbar for Time Picker & Modal */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
