One of the challenges I'm facing involves overriding existing classes that I've defined in an Angular component's SCSS file. In this unique scenario, different styles will be retrieved from an API, each with a class name associated with the component and updated styles. The goal is to update the component by overriding its existing styling. Unfortunately, using ngClass or ngStyle won't work in this case, as I'll be receiving a string containing all the classes within the component along with some revised styles. This customization must be individualized for each component, meaning that every component should override the styles specified in its stylesheet. How can I completely override the individual style of a component? Any guidance would be greatly appreciated.