Spaces:
Sleeping
Sleeping
| /* Main Background */ | |
| body { | |
| background: linear-gradient( | |
| 180deg, | |
| #f8f5ee 0%, | |
| #eef3e6 35%, | |
| #dce8d2 70%, | |
| #c7d8b6 100% | |
| ); | |
| font-family: 'Inter', sans-serif; | |
| } | |
| /* Chat Container */ | |
| .gradio-container { | |
| background: rgba(255, 255, 255, 0.75); | |
| backdrop-filter: blur(12px); | |
| border-radius: 20px; | |
| padding: 20px; | |
| box-shadow: 0 8px 30px rgba(95, 120, 90, 0.15); | |
| } | |
| /* User Messages */ | |
| .message.user { | |
| background: #a8c09a; | |
| color: #2f3d2f; | |
| border-radius: 18px; | |
| padding: 12px; | |
| border: none; | |
| } | |
| /* Bot Messages */ | |
| .message.bot { | |
| background: #f7f3ea; | |
| color: #4b5a4b; | |
| border-radius: 18px; | |
| padding: 12px; | |
| border: 1px solid #d9e3cc; | |
| } | |
| /* Input Box */ | |
| textarea, | |
| input { | |
| background: #fefcf8 ; | |
| border: 2px solid #c8d8bc ; | |
| border-radius: 15px ; | |
| color: #445244 ; | |
| } | |
| /* Send Button */ | |
| button { | |
| background: #91aa84 ; | |
| color: white ; | |
| border-radius: 14px ; | |
| border: none ; | |
| transition: all 0.3s ease; | |
| } | |
| button:hover { | |
| background: #7f9873 ; | |
| transform: translateY(-2px); | |
| } | |
| /* Scrollbar */ | |
| ::-webkit-scrollbar { | |
| width: 8px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: #eef3e6; | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: #a8c09a; | |
| border-radius: 10px; | |
| } | |
| /* Header */ | |
| h1, h2, h3 { | |
| color: #4b5a4b; | |
| font-weight: 600; | |
| } | |
| /* Soft Glow Effect */ | |
| .gradio-container::before { | |
| content: ""; | |
| position: absolute; | |
| inset: 0; | |
| background: radial-gradient( | |
| circle at top, | |
| rgba(180, 210, 160, 0.15), | |
| transparent 60% | |
| ); | |
| pointer-events: none; | |
| } |