@tailwind base; @tailwind components; @tailwind utilities; :root { --foreground: #111827; --background: #f9fafb; } body { background: var(--background); color: var(--foreground); font-family: system-ui, -apple-system, sans-serif; } /* Bias badges */ .badge-bull { @apply bg-green-100 text-green-800 border border-green-200; } .badge-bear { @apply bg-red-100 text-red-800 border border-red-200; } .badge-neutral { @apply bg-gray-100 text-gray-700 border border-gray-200; }