/* Custom Scrollbar */ ::-webkit-scrollbar { width: 10px; } ::-webkit-scrollbar-track { background: #f1f1f1; } .dark ::-webkit-scrollbar-track { background: #1e293b; } ::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 5px; } .dark ::-webkit-scrollbar-thumb { background: #475569; } ::-webkit-scrollbar-thumb:hover { background: #94a3b8; } /* Base Styles */ body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* RTL Handling Helpers */ [dir="rtl"] { direction: rtl; text-align: right; } [dir="rtl"] .feather { margin-left: 0.5rem; margin-right: 0; } [dir="ltr"] .feather { margin-right: 0.5rem; margin-left: 0; } /* Animation Classes */ @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .animate-fade-in { animation: fadeIn 0.8s ease-out forwards; }