| |
| body { |
| margin: 0; |
| font-family: 'Poppins', sans-serif; |
| background: linear-gradient(135deg, #1f2c34, #1b1b2f); |
| } |
|
|
| |
| .chat-container { |
| padding: 20px; |
| } |
|
|
| |
| .chat-box { |
| width: 450px; |
| max-width: 95%; |
| height: 650px; |
| background-color: #222831; |
| border-radius: 20px; |
| display: flex; |
| flex-direction: column; |
| overflow: hidden; |
| } |
|
|
| |
| .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 { |
| flex: 1; |
| overflow-y: auto; |
| padding: 15px; |
| } |
|
|
| |
| .chat-footer { |
| background-color: #393e46; |
| border-bottom-left-radius: 20px; |
| border-bottom-right-radius: 20px; |
| } |
|
|
| |
| .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-message .msg-text { |
| background-color: #00adb5; |
| color: white; |
| } |
|
|
| .bot-message .msg-text { |
| background-color: #393e46; |
| color: #eeeeee; |
| } |
|
|
| |
| 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; |
| } |
|
|
| |
| @media (max-width: 500px) { |
| .chat-box { |
| height: 80vh; |
| width: 95%; |
| } |
| } |
|
|
|
|