| /* style.css */ | |
| #input-container { | |
| display: flex; | |
| width: 100%; | |
| max-width: 700px; | |
| margin: 0 auto; | |
| gap: 8px; | |
| } | |
| #chat-input { | |
| flex: 0 0 90%; | |
| } | |
| #reset-button { | |
| flex: 0 0 10%; | |
| height: 40px; | |
| font-size: 18px; | |
| padding: 0; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| } | |