Why doesn't my button show any change when I hover over it?
If you don't add a hover style, the button stays the same color on hover, so no visual feedback appears. See render_step 2 where hover:bg-blue-700 adds the color change.
💡 Always add a :hover style to show the button is interactive.
Why can't I see the focus ring when I click the button with a mouse?
Focus rings usually appear when using keyboard navigation (tab key), not mouse clicks. This helps keyboard users know where they are. See render_step 3 for focus:ring-2 effect.
💡 Use keyboard (Tab) to test focus styles.
Why does the button not look pressed when I click it?
Without an :active style, the button won't change visually on click. render_step 4 shows active:bg-blue-900 adding a darker color on click.
💡 Add :active styles for click feedback.