@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  body {
    @apply bg-white dark:bg-gray-900 text-gray-900 dark:text-gray-100;
  }
}

@layer components {
  .htmx-indicator {
    @apply hidden;
  }
  .htmx-request .htmx-indicator {
    @apply inline-block;
  }
  .htmx-request.htmx-indicator {
    @apply inline-block;
  }
}
