The new keybindings (Shift+Tab, Up, Down, BackTab) weren't working because the main app.rs event loop was only passing specific keys to the TUI app. Added handling for: - KeyCode::BackTab (Shift+Tab panel switching) - KeyCode::Up (scroll up in focused panel) - KeyCode::Down (scroll down in focused panel) Now all keyboard navigation features work correctly.