.open-chat-btn {
    position: fixed;
    bottom: 10px;
    right: 10px;
    color: white;
    border-radius: 44px 44px 4px 44px;
    border: 1px solid #33c5f0;
    cursor: pointer;
    z-index: 50;
    background-color: #3366a0;
    padding-left: 1rem;
}

.open-chat-btn:hover {
}

.open-chat-btn img {
    width: 50px;
}

.chat-container {
    position: fixed;
    bottom: 91px;
    right: 20px;
    max-width: 400px;
}

.chat-container .card-body {
    max-height: 500px;
    overflow-y: scroll;
}


.chat-container .options button {
    padding: 10px 20px;
    margin-bottom: 10px;
    background-color: #3366a0;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    display: block;
    width: 100%;
}

.chat-container .options button:hover {
    background-color: #5582b5;
}

.chat-container .options textarea:first-of-type{
    min-height: 110px;
}

.chat-container .user-message {
    position: relative;
    text-align: left;
    background-color: #ffcc99;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    max-width: 70%;
}

.chat-container .bot-message {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid #e9e5e5;
}
.chat-container .bot-message img {
    width: 28px;
}

.chat-container .message-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 50%;
}
.chat-container .loading-dots {
    display: none;
}