Subbu1304's picture
Update static/styles.css
194de38 verified
raw
history blame
864 Bytes
/* Chat Container */
.chat-container {
font-family: Arial, sans-serif;
background-color: #f8f9fa;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
#chatbox-container {
width: 400px;
background-color: white;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
overflow: hidden;
}
.chat-header {
background-color: #3b82f6;
padding: 10px;
color: white;
text-align: center;
}
.bot-message, .user-message {
background-color: #e0e0e0;
padding: 10px;
margin: 5px 0;
border-radius: 8px;
max-width: 80%;
}
.user-message {
background-color: #3b82f6;
color: white;
}
#submit-btn {
padding: 10px 20px;
background-color: #3b82f6;
color: white;
border: none;
border-radius: 8px;
cursor: pointer;
}
#submit-btn:hover {
background-color: #2563eb;
}