rakib72642's picture
Add all files including PDFs with Git LFS
b4f404b
/* Fonts & Body */
body {
margin: 0;
font-family: 'Poppins', sans-serif;
background: linear-gradient(135deg, #1f2c34, #1b1b2f);
}
/* Chat container */
.chat-container {
padding: 20px;
}
/* Chat box */
.chat-box {
width: 450px;
max-width: 95%;
height: 650px;
background-color: #222831;
border-radius: 20px;
display: flex;
flex-direction: column;
overflow: hidden;
}
/* Chat header */
.chat-header {
background-color: #30475e;
color: white;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
}
.chat-avatar {
width: 55px;
height: 55px;
border-radius: 50%;
border: 2px solid #00adb5;
}
/* Chat body */
.chat-body {
flex: 1;
overflow-y: auto;
padding: 15px;
}
/* Chat footer */
.chat-footer {
background-color: #393e46;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
}
/* Messages */
.msg-text {
position: relative;
max-width: 80%;
word-wrap: break-word;
box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.msg-text .time {
font-size: 10px;
position: absolute;
bottom: -15px;
right: 8px;
color: rgba(255,255,255,0.5);
}
/* User & Bot message */
.user-message .msg-text {
background-color: #00adb5;
color: white;
}
.bot-message .msg-text {
background-color: #393e46;
color: #eeeeee;
}
/* Input & Button */
input.form-control {
border-radius: 25px;
padding: 12px 15px;
background-color: #222831;
border: 1px solid #00adb5;
color: #eee;
}
input.form-control:focus {
box-shadow: none;
outline: none;
}
.btn-accent {
border-radius: 25px;
background-color: #00adb5;
color: white;
padding: 0 18px;
}
.btn-accent:hover {
background-color: #00b8c4;
}
/* Responsive */
@media (max-width: 500px) {
.chat-box {
height: 80vh;
width: 95%;
}
}