.ai-chatbot {
    position: fixed;
    width: 100vw;
    max-width: 100%;
    right: 0;
    bottom: 0;
    padding: 0 50px 100px 50px;
    height: 100vh;
    z-index: 50;
    display: none;
    align-items: end;
    justify-content: end;
    background-color: rgba(0, 0, 0, 0.5);
    @media (max-width: 600px) {
        padding: 0 20px 100px 20px;
    }
}

.ai-chatbot-container {
    width: 500px;
    max-width: 100%;
}

.ai-chatbot.active {
    display: flex;
}

.ai-chatbot-button {
    position: fixed;
    bottom: 5px;
    right: 5px;
    z-index: 51;
}