@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); body { font-family: 'Inter', sans-serif; min-height: 100vh; display: flex; flex-direction: column; } /* Dark mode toggle styles */ .dark-mode body { background-color: #0F172A; color: #F8FAFC; } .dark-mode .bg-white { background-color: #1E293B !important; color: #F8FAFC !important; } .dark-mode .text-gray-800 { color: #F8FAFC !important; } .dark-mode .text-gray-600 { color: #CBD5E1 !important; } /* Animation classes */ .transition { transition: all 0.3s ease; } .hover-scale { transition: transform 0.2s ease; } .hover-scale:hover { transform: scale(1.02); } /* Custom scrollbar */ ::-webkit-scrollbar { width: 8px; } ::-webkit-scrollbar-track { background: #F1F5F9; } ::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 4px; } ::-webkit-scrollbar-thumb:hover { background: #94A3B8; }