#justask-chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

#justask-chatbot-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

#justask-chatbot-iframe-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

#justask-chatbot-iframe-container.show {
    display: block;
}

#justask-chatbot-iframe-container iframe {
    border: 0;
}

@media (max-width: 768px) {
    #justask-chatbot-iframe-container.show {
        position: fixed;
        top: 20px;
        left: 20px;
        right: 20px;
        bottom: 100px;
    }

    #justask-chatbot-iframe-container.show iframe {
        width: 100%;
        height: 100%;
    }
}
