/* stylelint-disable at-rule-no-unknown */
/* Tailwind directives — allow PostCSS/Tailwind to process these at-rules */
@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
	--color-primary: #465fff;
	--color-success: #34ad76;
	--color-danger: #d93225;
	--color-black: #000000;
	--color-white: #ffffff;
}

/* Utility examples using variables (optional) */
.btn-primary {
	@apply bg-primary text-white;
}
