/* Custom styles */ @import 'tailwindcss/base'; @import 'tailwindcss/components'; @import 'tailwindcss/utilities'; /* Custom scrollbar */ ::-webkit-scrollbar { width: 10px; } ::-webkit-scrollbar-track { background: #1a1a1a; } ::-webkit-scrollbar-thumb { background: #dc2626; border-radius: 5px; } ::-webkit-scrollbar-thumb:hover { background: #b91c1c; } /* Animation for elements */ @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.8; } } .animate-pulse { animation: pulse 2s infinite; }