Spaces:
Sleeping
Sleeping
| /* Custom CSS for the AI Chatbot */ | |
| .header-row { | |
| margin-bottom: 20px; | |
| } | |
| .footer-row { | |
| margin-top: 30px; | |
| } | |
| .gradio-container { | |
| max-width: 1200px ; | |
| margin-left: auto ; | |
| margin-right: auto ; | |
| } | |
| /* Styling for chat messages */ | |
| .chat-bot .user-message { | |
| background-color: #e3f2fd ; | |
| border-radius: 15px ; | |
| padding: 10px 15px ; | |
| } | |
| .chat-bot .bot-message { | |
| background-color: #f1f8e9 ; | |
| border-radius: 15px ; | |
| padding: 10px 15px ; | |
| } | |
| /* Button styling */ | |
| button { | |
| transition: all 0.3s ease ; | |
| } | |
| button:hover { | |
| transform: translateY(-2px) ; | |
| box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) ; | |
| } |