.chat-container {
    width: 400px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.chat-header {
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.chat-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}
.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.chat-input {
    display: flex;
    padding: 10px;
    background-color: #f1f1f1;
}
.chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}
.chat-input button {
    margin-left: 10px;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.chat-input button:hover {
    background-color: #45a049;
}
.message {
    margin-bottom: 15px;
}
.message.user {
    text-align: right;
}
.message p {
    display: inline-block;
    padding: 10px;
    border-radius: 10px;
    max-width: 80%;
}
.message.user p {
    background-color: #e1ffc7;
}
.message.versa p {
    background-color: #f1f1f1;
}