#anything-llm-chat{
    max-width: 600px !important;
}
#anything-llm-embed-chat-container{
    z-index: 1000;
}
.allm-flex textarea{
    height: 40px !important;
}
#chat-history{
    padding-top: 10px;
}
    /* Vị trí nút và khung chat */
#chatbot-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0078d7;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 10000;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#chatbot-button:hover {
    background-color: #005fa3;
}

#chatbot-popup {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 380px;
    height: 520px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    z-index: 9999;
    display: none;
    overflow: hidden;
}

@media (max-width: 600px) {
    #chatbot-popup {
        width: 95%;
        height: 70%;
        right: 2.5%;
    }
}