Currently, I am incorporating Material UI Components into my react-app. When it comes to customizing the styles of these components, such as adding margin-top and font-weight to a button text, I encountered a challenge due to using CSS Modules. I resorted to using the !important flag to override the default CSS Styles. Is there a more efficient and cleaner solution to achieve this without relying on the !important flag? Below is an example of how I want a specific component to look like.
https://i.sstatic.net/W7Pqv.png
Someone suggested trying atomic CSS, but after researching it seems that it advocates for in-line styles, which goes against my goal of maintaining future reusability.
Thank you in advance