Why does the ring appear outside the element but the outline is inside?
The ring uses box-shadow which paints outside the element's border box, while outline draws a border around the element's edge (visually inside the ring).
💡 Ring = outside glow; Outline = border inside edge (see render_steps 2 and 3)
Why can't I see the outline if I only use ring classes?
Ring and outline are separate properties; ring uses box-shadow and outline uses outline CSS. You must add outline classes to see outlines.
💡 Ring and outline must be added separately (render_steps 2 vs 3)
Why does the ring color look transparent but the outline color is solid?
Ring colors use semi-transparent shadows for a glowing effect, outlines use solid colors for clear borders.
💡 Ring color uses rgba with opacity; outline color is solid (render_steps 2 and 3)