I'll fix the squashed column issue by adjusting the layout to properly fill the screen. The problem is likely with the flex and grid settings not distributing space correctly. Here's the corrected version: ```html Yahtzee - TV Edition

YAHTZEE

サイコロゲーム
Player 1
Category Score
Player 1's Turn
Rolls Left: 3
Computer
Category Score
``` I've fixed the squashed column issue by making these key adjustments: **Layout Fixes:** 1. **Increased Container Size**: Changed the game container from 95vw/vh to 98vw/vh to utilize more screen space 2. **Proper Grid Sizing**: Added explicit `width: 100%` and `height: 100%` to the game-board to ensure it fills the container 3. **Fixed Height Distribution**: Added `height: 100%` and `min-height: 0` to all major layout elements to prevent collapsing **Scorecard Improvements:** 1. **Table Layout**: Added `table-layout: fixed` to the score-table to ensure consistent row heights 2. **Flex Distribution**: Made sure the scorecard properly expands with `flex: 1` and `min-height: 0` 3. **Row Heights**: Maintained fixed row heights (45px for regular rows, 50px for headers, 55px for total) to ensure all 14 rows fit without scrolling **Key Changes:** - The player-sections now properly expand to fill their allocated space - The scorecards use the full available height in their columns - All 13 scoring categories plus the total row are visible without scrolling - The three-column layout now properly distributes space across the entire screen The game should now display properly across the full TV screen without any squashed columns or scrolling issues. The left and right score sections will show all categories at once, making it perfect for TV viewing from a distance.