#keezy-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: #111;
    border-radius: 10px;
    padding: 10px;
    color: white;
}

#chat-box {
    height: 250px;
    overflow-y: auto;
    margin-bottom: 10px;
}

.user {
    text-align: right;
    margin: 5px;
    color: #DACC6F;
}

.bot {
    text-align: left;
    margin: 5px;
}

#chat-input {
    width: 70%;
    padding: 5px;
}

#send-btn {
    width: 25%;
    background: #DACC6F;
    border: none;
}
