Your styles aren't loading because Next.js thinks they’re not being used and skips them.
Just import your CSS file directly in your app, like in layout.tsx:
layout.tsx
import 'component-library/dist/main.css';