/* Chatbot positioning and initial display state */
#linebrain-chatbot {
    display: none;
    position: fixed;
    right: 15px;
    bottom: 0;
    margin: 10px 10px 0;
    transition: all ease-in-out 0.3s;
    z-index:100;
}

@media screen and (max-width: 576px) {
    #linebrain-chatbot {
        right: 0;
        margin: 0;
        width: 100%;
        height: 100%;
    }

    #linebrain-chatbot.minimised {
        height: initial;
    }
}