/* * llmindex.io — global styles (clean light theme) * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai * License: Proprietary — © Simon-Pierre Boucher, all rights reserved */ @tailwind base; @tailwind components; @tailwind utilities; :root { color-scheme: light; } body { @apply bg-zinc-50 text-zinc-700 antialiased; } @keyframes row-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } } .animate-row-in { animation: row-in 0.6s ease-out; }