This solution is generated by ChatGPT, correctness is not guaranteed.

AI solution for CSS coding question on BFE.dev
4. two-column layout

.container { height: 300px; display: flex; }

.left { background-color: #f44336; min-width: 100px; width: 25%; }

.right { background-color: #2973af; flex: 1; }