Problem:
When the modal is opened and the user presses Tab to navigate through the action buttons, the focus moves in reverse order (right to left), which is not the expected behaviour.
Solution:
Adjusted the layout of the modal action buttons to ensure they follow the correct tab order from left to right. This was achieved by rearranging the buttons and setting the flex-direction to row (previously it was row-reverse) and justify-content to flex-end.
Problem: When the modal is opened and the user presses Tab to navigate through the action buttons, the focus moves in reverse order (right to left), which is not the expected behaviour.
Solution: Adjusted the layout of the modal action buttons to ensure they follow the correct tab order from left to right. This was achieved by rearranging the buttons and setting the flex-direction to row (previously it was row-reverse) and justify-content to flex-end.
Related Issue: Fixes #42185