@tailwind base; @tailwind components; @tailwind utilities; @layer components { /* Glass morphism effect */ .glass { @apply bg-white/5 backdrop-blur-xl; } /* Scrollbar styling */ .scrollbar-thin::-webkit-scrollbar { width: 6px; } .scrollbar-thin::-webkit-scrollbar-track { @apply bg-black/10 rounded; } .scrollbar-thin::-webkit-scrollbar-thumb { @apply bg-white/20 rounded; } /* Pulse animation for status dots */ .pulse-dot { animation: pulse 2s infinite; } @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } } }