
.instructions {
    text-align: left;
    padding: 20px;
    width: 80%;
    max-width: 600px;
}

df-messenger {
    --df-messenger-titlebar-background: #6898FF;
    --df-messenger-titlebar-icon-width: 0px;
    --df-messenger-primary-color: #6898FF;
    --df-messenger-chat-background-color: #F5F5F5;
    --df-messenger-bot-message: #F5F5F5;
    --df-messenger-user-message: #6898FF;
    --df-messenger-user-message-font-color: white;
    --df-messenger-send-icon: #6898FF;
    --df-messenger-chat-window-width: 400px;
    --df-messenger-chat-window-height: 600px;
    position: fixed;
    bottom: -100px;
    z-index: 1000;
    transform: scale(0);
    transition: transform 0.3s ease-in-out;
    --df-messenger-titlebar-font-color: white;
    --df-messenger-titlebar-title-font-size: 18px;
    --df-messenger-chat-bubble-close-icon-size: 0px;
    --df-messenger-chat-bubble-size: 0px;
    --df-messenger-titlebar-button-display: none;
}

df-messenger-chat-bubble {
    --df-messenger-chat-bubble-size: 70px;
    --df-messenger-chat-icon-size: 50px;
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 1001;
}


.chat-toggle {
    position: fixed;
    bottom: 0;
    right: 16px;
    background-color: #6898FF;
    color: white;
    border-top-left-radius: 8px;
    border-top-right-radius: 35px;
    width: 400px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 1001;
    transition: background-color 0.3s ease-in-out;
}

.chat-toggle:hover {
    background-color: #577ECC;
}

.chat-toggle img {
    width: 50px;
    /*height: 30px;*/
    border-radius: 5px;
    margin-right: 90px;
    margin-top: 3px;
    margin-left: 3px;
}

.close-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    position: absolute;
    bottom: 650px;
    right: 420px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: #F5F5F5;
    z-index: 1001;
}

.custom-df-dialog{
    position: absolute;
    right: 0;
}

@media (max-width: 430px) {
    df-messenger {
        --df-messenger-chat-window-width: 336px;
    }

    .chat-toggle {
        position: fixed;
        bottom: 0;
        right: 8px;
        width: 336px;
        height: 40px;
    }

    df-messenger {
        right: 0;
    }


    .close-icon {
        bottom: 650px;
        right: 360px;
    }
}

