/* 🎯 CHATBOT QUICK FIX - Add this CSS to fix the visibility issues */

/* Show the toggle button - it's hidden by 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 dialog by default - it's showing when it shouldn't */
#ai-chat-container,
.ai-chat-widget {
    display: none !important;
    position: fixed !important;
    bottom: 90px !important;
    right: 20px !important;
    z-index: 1001 !important;
}

/* Show dialog when the original JavaScript adds the 'show' class */
#ai-chat-container.show,
.ai-chat-widget.show {
    display: block !important;
} 