Spaces:
Sleeping
Sleeping
File size: 751 Bytes
b251dd6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
/* Custom CSS for the AI Chatbot */
.header-row {
margin-bottom: 20px;
}
.footer-row {
margin-top: 30px;
}
.gradio-container {
max-width: 1200px !important;
margin-left: auto !important;
margin-right: auto !important;
}
/* Styling for chat messages */
.chat-bot .user-message {
background-color: #e3f2fd !important;
border-radius: 15px !important;
padding: 10px 15px !important;
}
.chat-bot .bot-message {
background-color: #f1f8e9 !important;
border-radius: 15px !important;
padding: 10px 15px !important;
}
/* Button styling */
button {
transition: all 0.3s ease !important;
}
button:hover {
transform: translateY(-2px) !important;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
} |