Why do my variables in Settings not change the button color?
Variables in Settings only define values. You must use them in Components or other layers to see visual changes, as shown in step 3 where $primary-color is applied.
💡 Variables alone don't style elements; they provide values for styles applied later.
Why does resetting margin and padding in Generic affect all elements?
Generic layer applies to all elements (*) to remove browser defaults, creating a clean slate for consistent styling, as seen in step 1.
💡 Generic resets affect every element, so always apply them first.
Why is my button not centered vertically on the page?
Centering requires layout styles like flexbox in Objects layer. Without applying .container with center mixin, content won't center, as explained in property_table and implied in code_sample.
💡 Use Objects layer for layout patterns like centering.