| /* Dark mode base styles */ | |
| body { | |
| background-color: #121212; /* Deep dark background */ | |
| color: #e0e0e0; /* Light gray text */ | |
| font-family: Arial, sans-serif; | |
| margin: 0; | |
| padding: 0; | |
| } | |
| /* Container styling */ | |
| .container { | |
| max-width: 800px; | |
| margin: auto; | |
| padding: 20px; | |
| } | |
| /* Headings */ | |
| h2 { | |
| color: #ffffff; /* White text */ | |
| } | |
| /* Input and textarea fields */ | |
| input, textarea { | |
| background-color: #1e1e1e; /* Dark input background */ | |
| color: #ffffff; /* White text */ | |
| border: 1px solid #444; /* Slightly lighter border */ | |
| padding: 8px; | |
| border-radius: 4px; | |
| } | |
| textarea { | |
| width: 100%; | |
| height: 120px; | |
| resize: vertical; | |
| } | |
| /* Chat area */ | |
| .chat { | |
| background-color: #1a1a1a; | |
| border: 1px solid #333; | |
| padding: 10px; | |
| height: 300px; | |
| overflow-y: auto; | |
| margin-bottom: 10px; | |
| } | |
| /* Buttons */ | |
| button { | |
| background-color: #333; | |
| color: #fff; | |
| border: none; | |
| padding: 8px 14px; | |
| margin-right: 5px; | |
| cursor: pointer; | |
| border-radius: 4px; | |
| } | |
| button:hover { | |
| background-color: #555; | |
| } | |