/* Placeholder Tailwind CSS file for production builds.
   To generate a production Tailwind build, install Tailwind locally and compile your utilities into this file.

   Quick setup (example):
   1. npm init -y
   2. npm install -D tailwindcss postcss autoprefixer
   3. npx tailwindcss init
   4. Create a `src/styles/tailwind-input.css` with the Tailwind directives:
      @tailwind base;
      @tailwind components;
      @tailwind utilities;
   5. Build: npx tailwindcss -i ./src/styles/tailwind-input.css -o ./assets/css/tailwind.css --minify

   For now this file contains minimal helpers used by the template.
*/

:root{
  /* small subset of utility tokens to harmonize with Bootstrap */
}

/* Minimal helpers (examples) */
.text-brand { color: #0d47a1; }
.bg-brand { background-color: #0d47a1; }
.p-2 { padding: .5rem; }
.mb-2 { margin-bottom: .5rem; }

/* You should replace this with a full compiled Tailwind CSS for production */
