.chat-widget-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    z-index: 1000;
}
.chat-container {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    z-index: 1000;
}
#chatBox {
    width: 100%;
    height: 200px;
    border: 1px solid #ddd;
    overflow-y: auto;
    padding: 10px;
    background: #fafafa;
    margin-bottom: 10px;
}
#textInput {
    width: calc(100% - 80px);
    padding: 10px;
}
#sendButton {
    width: 60px;
    padding: 10px;
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}
#sendButton:hover {
    background: #0056b3;
}
.message-row {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.bot-image {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}
