Spaces:
Runtime error
Runtime error
| body { | |
| font-family: Arial, sans-serif; | |
| background-color: #f4f4f4; | |
| margin: 0; | |
| padding: 20px; | |
| } | |
| .chat-container { | |
| max-width: 600px; | |
| margin: 0 auto; | |
| padding: 20px; | |
| border: 1px solid #ccc; | |
| background: white; | |
| border-radius: 10px; | |
| box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | |
| } | |
| #chat-box { | |
| max-height: 400px; | |
| overflow-y: auto; | |
| margin-bottom: 10px; | |
| padding: 10px; | |
| border: 1px solid #ccc; | |
| border-radius: 5px; | |
| } | |
| input[type="text"] { | |
| width: 80%; | |
| padding: 10px; | |
| border: 1px solid #ccc; | |
| border-radius: 5px; | |
| } | |
| button { | |
| padding: 10px 15px; | |
| border: none; | |
| background-color: #007BFF; | |
| color: white; | |
| border-radius: 5px; | |
| cursor: pointer; | |
| } | |
| button:hover { | |
| background-color: #0056b3; | |
| } | |