Spaces:
Runtime error
Runtime error
| /* General layout with soft background colors */ | |
| #left-panel { | |
| background-color: #f0f4f8; | |
| } | |
| #center-panel { | |
| background-color: #fdf6ec; | |
| } | |
| #right-panel { | |
| background-color: #f0f7f4; | |
| } | |
| #left-panel, #center-panel, #right-panel { | |
| padding: 10px; | |
| border-radius: 10px; | |
| box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); | |
| } | |
| /* Scrollable chatbot */ | |
| #right-panel .gr-chatbot { | |
| max-height: 500px; | |
| overflow-y: auto; | |
| background-color: #ffffff; | |
| border: 1px solid #dcdcdc; | |
| border-radius: 10px; | |
| padding: 8px; | |
| } | |
| /* Rounded buttons with pastel background and hover effect */ | |
| button { | |
| border-radius: 20px ; | |
| background-color: #e3f2fd ; | |
| color: #333; | |
| border: none; | |
| transition: background-color 0.3s ease; | |
| } | |
| button:hover { | |
| background-color: #bbdefb ; | |
| } | |
| /* Center panel title */ | |
| #center-panel h1 { | |
| font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | |
| color: #2c3e50; | |
| } | |
| /* Italic statement */ | |
| #center-panel i { | |
| display: block; | |
| margin-top: 15px; | |
| text-align: center; | |
| font-style: italic; | |
| color: #777; | |
| } | |
| /* Input and answer boxes soft borders */ | |
| textarea, input[type="text"] { | |
| border: 1px solid #dcdcdc ; | |
| border-radius: 10px ; | |
| background-color: #ffffff ; | |
| padding: 10px ; | |
| font-size: 14px ; | |
| color: #333 ; | |
| box-shadow: none ; | |
| } | |