/* Custom scrollbar */ ::-webkit-scrollbar { width: 8px; } ::-webkit-scrollbar-track { background: #f1f1f1; } ::-webkit-scrollbar-thumb { background: #1e40af; border-radius: 10px; } ::-webkit-scrollbar-thumb:hover { background: #1e3a8a; } /* Smooth transitions */ a, button { transition: all 0.3s ease; } /* Custom animations */ @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } .animate-fadeIn { animation: fadeIn 1s ease-in-out; }