
.chat-widget {
    max-width: 400px;
    margin: 0 auto;
}

.chat-body {
    height: 300px;
}

/* Mengatur posisi pesan */
.message {
    max-width: 75%;
    padding: 10px;
    margin-bottom: 10px;
}

.user {
    background-color: #ec2344;
    color: #fff;
    align-self: flex-end;
}

.bot {
    background-color: #e9ecef;
    color: #333;
    align-self: flex-start;
}

/* Menyelaraskan pesan */
.float-right {
    align-self: flex-end;
    float: right;
    clear: both;
}

.float-left {
    align-self: flex-start;
    float: left;
    clear: both;
}
