Shadow dom encapsulate css styles, selectors don\'t cross the shadow boundary.
dom
Question: How to use global common css styles in shadow
You do it via ::shadow pseudo-element. Like this:
::shadow .redColor { background-color: red; }
That will apply styling to all elements inside shadow trees with .redColor class.
More info + other styling possibilities in this great article: Shadow DOM 201