/* CSS extracted from chatbot.js to comply with strict CSP style-src 'self' */

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.bounce {
    animation: bounce 1.5s infinite;
}

.bot-opener-style {
    position: fixed;
    bottom: 45px;
    right: 45px;
    padding: 5px;
    border-radius: 10px;
    width: 80px;
    height: 80px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    background: unset;
}

.ask-img-style {
    height: 36px;
    margin-bottom: -20px;
}

.ask-label-style {
    font-size: 13px;
    color: #333;
    text-align: center;
    margin-right: 10px;
    margin-top: -10px;
}

.bot-img-style {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.chat-bot-style {
    z-index: 1000000;
}

.iframe-style {
    border: 0;
}

#the_iframe {
    position: fixed;
    right: 2%;
    bottom: 4%;
    height: 90%;
    width: 470px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 14px #999;
    z-index: 100000;
}

@media (max-width: 768px) {
    #the_iframe {
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        border-radius: 0;
    }
}

/* --- VISIBILITY TOGGLE CLASSES (CSP SAFE) --- */
.hide-element {
    display: none !important;
}
.show-block {
    display: block !important;
}
.show-flex {
    display: flex !important;
}