legalAssistant / style.css
fizzarif7's picture
Update style.css
1e1e64b verified
/* 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 !important;
background-color: #e3f2fd !important;
color: #333;
border: none;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #bbdefb !important;
}
/* 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 !important;
border-radius: 10px !important;
background-color: #ffffff !important;
padding: 10px !important;
font-size: 14px !important;
color: #333 !important;
box-shadow: none !important;
}