Added items-center to the footer flex container — both the "total failures" count and the "Click to view failed tests" line are now horizontally centered under the bar chart.
Now let me check the parent card to see where the export button lives:
Now I have the full picture. The export button is absolute bottom-3 right-3 in the parent. The fix is a 3-column footer inside FeatureFailureBar: left = total failures, center = click hint, right = empty spacer (same width as left) so it stays truly centered.
The footer is now a single row with 3 equal-width columns using justify-between: "87 total failures" pinned left (w-24), "Click to view failed tests" naturally centered in the middle, and an invisible w-24 spacer on the right that mirrors the left column — ensuring the center text is truly centered regardless of the export button.