div#bizzy-chat {
    display: flex;
    flex-direction: column-reverse;
}

div#bizzy-chat-response {
    padding: 20px;
}

div#bizzy-chat .user-message {
    display: table;
    font-size: 18px;
    text-align: left;
    margin-bottom: 20px;
    width: 100%;
}

div#bizzy-chat .bot-message {
    display: table;
    font-size: 18px;
    text-align: right;
    margin-bottom: 20px;
    width: 100%;
}

div#bizzy-chat .message {
    padding: 20px;
    background: #cccccc38;
    border-radius: 20px;
    display: inline-block;
    max-width: 50%;
    font-size: 16px;
    font-weight: 300;
}

form#bizzy-chat-form {
    max-width: 600px;
    width: 100%;
    margin: 50px auto 0 auto;
    display: flex;
    gap: 10px;
}

form#bizzy-chat-form input#user_input {
    width: 100%;
    border-radius: 100px;
    border: none;
    background: #f4f4f4;
    height: 55px;
    padding: 25px 30px 23px 30px;
    font-size: 16px;
    font-weight: 300;
}

form#bizzy-chat-form input[type="submit"] {
    background: #008cff;
    color: #fff;
    border: none;
    border-radius: 100px;
    font-size: 16px;
    width: 30%;
    transition: all .3s;
}

form#bizzy-chat-form input[type="submit"]:hover {
    background:#1a1a1a;
    cursor: pointer;
}