Spaces:
Sleeping
Sleeping
| /* General Styles */ | |
| body { | |
| font-family: Arial, sans-serif; | |
| background-color: #f8f9fa; | |
| margin: 0; | |
| padding: 0; | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| height: 100vh; | |
| } | |
| .chat-container { | |
| width: 400px; | |
| background-color: #ffffff; | |
| border-radius: 10px; | |
| box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | |
| overflow: hidden; | |
| } | |
| .chat-header { | |
| background-color: #3b82f6; | |
| color: #ffffff; | |
| padding: 10px; | |
| text-align: center; | |
| } | |
| .chat-box { | |
| padding: 15px; | |
| max-height: 300px; | |
| overflow-y: auto; | |
| background-color: #f0f4f8; | |
| } | |
| .bot-message, | |
| .user-message { | |
| background-color: #e0e0e0; | |
| padding: 10px; | |
| margin: 5px 0; | |
| border-radius: 8px; | |
| max-width: 80%; | |
| } | |
| .user-message { | |
| background-color: #3b82f6; | |
| color: #ffffff; | |
| align-self: flex-end; | |
| } | |
| .user-input { | |
| display: flex; | |
| padding: 10px; | |
| background-color: #ffffff; | |
| border-top: 1px solid #e0e0e0; | |
| } | |
| .user-input input { | |
| flex: 1; | |
| padding: 10px; | |
| border: 1px solid #ddd; | |
| border-radius: 8px; | |
| margin-right: 10px; | |
| } | |
| .user-input button { | |
| padding: 10px 20px; | |
| background-color: #3b82f6; | |
| color: white; | |
| border: none; | |
| border-radius: 8px; | |
| cursor: pointer; | |
| } | |
| .user-input button:hover { | |
| background-color: #2563eb; | |
| } | |
| .dropdown { | |
| width: 100%; | |
| padding: 10px; | |
| border-radius: 8px; | |
| margin-top: 10px; | |
| } | |
| #submit-btn { | |
| width: 100px; | |
| background-color: #3b82f6; | |
| color: white; | |
| border: none; | |
| padding: 10px; | |
| border-radius: 8px; | |
| cursor: pointer; | |
| } | |
| #submit-btn:hover { | |
| background-color: #2563eb; | |
| } | |