/* Simple Chatbot Visibility Fix */

/* Show the toggle button - override display: none */
#ai-chat-toggle,
.ai-chat-toggle {
    display: block !important;
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 1000 !important;
}

/* Hide the chat container by default */
#ai-chat-container,
.ai-chat-widget {
    display: none !important;
    position: fixed !important;
    bottom: 90px !important;
    right: 20px !important;
    z-index: 1001 !important;
}

/* Show chat container when it has 'show' class (original chatbot logic) */
#ai-chat-container.show,
.ai-chat-widget.show {
    display: block !important;
}
