Spaces:
Running
Running
| /* BODY AND BACKGROUND */ | |
| body { | |
| background-color: #000000 ; | |
| color: #EFBF04 ; | |
| font-family: 'Inter', sans-serif; | |
| } | |
| /* CHATBOT */ | |
| .gr-chatbot { | |
| background-color: #000000 ; | |
| border: 1px solid #EFBF04 ; | |
| border-radius: 16px; | |
| padding: 20px; | |
| color: #EFBF04 ; | |
| font-family: 'Inter', sans-serif; | |
| } | |
| /* CHAT BUBBLES */ | |
| .gr-chatbot .message { | |
| background-color: #000000 ; | |
| color: #EFBF04 ; | |
| border: 1px solid #EFBF04 ; | |
| border-radius: 12px; | |
| padding: 8px 12px; | |
| margin-bottom: 6px; | |
| } | |
| /* INPUTS AND DROPDOWNS */ | |
| .gr-dropdown, .gr-textbox { | |
| border-radius: 12px; | |
| border: 1px solid #EFBF04 ; | |
| background-color: #000000 ; | |
| color: #EFBF04 ; | |
| padding: 8px; | |
| } | |
| /* Placeholder text for inputs */ | |
| .gr-textbox::placeholder { | |
| color: #EFBF04 ; | |
| opacity: 0.6; | |
| } | |
| /* BUTTONS */ | |
| .gr-button { | |
| border-radius: 12px; | |
| background-color: #EFBF04 ; | |
| color: #000000 ; | |
| font-weight: 600; | |
| border: none; | |
| transition: all 0.2s ease-in-out; | |
| } | |
| .gr-button:hover { | |
| background-color: #000000 ; | |
| color: #EFBF04 ; | |
| border: 1px solid #EFBF04 ; | |
| } | |
| /* HEADER TEXT */ | |
| .header-text { | |
| font-family: 'Poppins', sans-serif; | |
| font-weight: 600; | |
| color: #EFBF04 ; | |
| } | |
| /* AVATAR IMAGE */ | |
| #agent-avatar img { | |
| width: 200px; | |
| height: 200px; | |
| margin-bottom: 12px; | |
| border-radius: 50%; | |
| border: 2px solid #EFBF04; | |
| object-fit: cover; | |
| } |