Accessibility Checklist Every UI component in must meet these standards. No partial compliance. Gotchas - divs may exist in the codebase -- fix them when touching affected files. elements with for sortable columns are acceptable. - Nested interactive elements -- when replacing a that contains a child (e.g., a copy button inside a collapsible toggle), do not just swap the outer div to . That creates invalid nested buttons. Instead, restructure into sibling elements: a toggle and a separate action side by side in a flex container. - Standalone inputs outside react-hook-form need manual ID pairi…