| |
|
| | body {
|
| | font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
| | background-color: #f4f4f4;
|
| | margin: 0;
|
| | padding: 0;
|
| | }
|
| |
|
| |
|
| | .stApp {
|
| | max-width: 800px;
|
| | margin: 20px auto;
|
| | padding: 20px;
|
| | border-radius: 10px;
|
| | box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
| | }
|
| |
|
| |
|
| | .stChatMessage {
|
| | padding: 15px;
|
| | border-radius: 8px;
|
| | margin-bottom: 10px;
|
| | box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
| | }
|
| |
|
| |
|
| | .stChatMessage [data-testid="chat-message-text"]:first-of-type {
|
| | background-color: #e0f2f1;
|
| | color: #333;
|
| | text-align: left;
|
| | }
|
| |
|
| |
|
| | .stChatMessage:not([data-testid="chat-message-text"]:first-of-type) {
|
| | background-color: #fff;
|
| | color: #333;
|
| | text-align: left;
|
| | }
|
| |
|
| |
|
| | .stChatInputContainer {
|
| | padding: 10px;
|
| | background-color: #fff;
|
| | border-top: 1px solid #ddd;
|
| | }
|
| |
|
| | .stChatInputContainer textarea {
|
| | width: 100%;
|
| | padding: 10px;
|
| | border: 1px solid #ccc;
|
| | border-radius: 5px;
|
| | resize: vertical;
|
| | }
|
| |
|
| |
|