@import "tailwindcss"; @theme { --font-family-sans: 'Inter', sans-serif; --font-family-mono: 'JetBrains Mono', monospace; } body { font-family: var(--font-family-sans); margin: 0; overflow: hidden; } .custom-scrollbar::-webkit-scrollbar { width: 8px; } .custom-scrollbar::-webkit-scrollbar-track { background: transparent; } .custom-scrollbar::-webkit-scrollbar-thumb { background-color: rgba(255, 255, 255, 0.15); border-radius: 999px; } .custom-scrollbar::-webkit-scrollbar-thumb:hover { background-color: rgba(255, 255, 255, 0.3); }