@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  :root {
    @apply [color-scheme:dark];
  }

  body {
    @apply min-h-screen bg-background text-text-primary antialiased;
  }

  * {
    @apply border-card;
  }
}
