﻿/* Basic chat window styling */
.chat-container {
    width: 450px;
    height: 600px;
    border: 0px solid #ccc;
    padding: 10px;
    background-color: #ecb200;
    border-radius: 5px;
}

.chat-window {
    height: 500px;
    overflow-y: auto;
}

.chat-input {
    width: 100%;
    border-radius: 5px;
}

.user-message {
    text-align: left;
    background-color: #125687;
    color: white;
    padding: 5px;
    margin: 5px;
    border-radius: 5px;
}

.bot-message {
    text-align: right;
    background-color: white;
    color: black;
    padding: 5px;
    margin: 5px;
    border-radius: 5px;
}
