Styling the application should be done using the following strategies, in priority order:

- Use components from this design library
- Use Tailwind
- Use inline styles
- Import component scoped css

This order helps us maintain consistent styles, reduce the amount of code shipped to the browser, and reduces the risk of styling errors.

#### Importing CSS
As a last resort if Tailwind and inline styles don't work for your use case, you can import css scoped to that specific component. Scoping doesn't happen automatically, so you'll need to choose a unique class name for your component.