/* Simple Chat Fix - НОВЫЙ ПРОСТОЙ ДИЗАЙН */

/* ПРОСТОЙ ЧЕРНЫЙ КРУГ - ОДИНАКОВЫЙ ВЕЗДЕ */
.chatbot-toggle,
#simpleChatbotToggle,
#chatbotToggle,
button[id*="chatbot" i],
button[class*="chatbot" i] {
    z-index: 999999 !important;
    position: fixed !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 50px !important;
    height: 50px !important;
    background: #000000 !important;
    border-radius: 50% !important;
    border: none !important;
    cursor: pointer !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    pointer-events: auto !important;
    outline: none !important;
}

.chatbot-widget,
#simpleChatbotWidget,
#chatbotWidget {
    z-index: 10001 !important;
    position: fixed !important;
}

/* Мобильные стили - простой черный круг */
@media (max-width: 768px) {
    .chatbot-toggle,
    #simpleChatbotToggle,
    #chatbotToggle,
    button[id*="chatbot" i],
    button[class*="chatbot" i] {
        bottom: 15px !important;
        right: 15px !important;
        width: 46px !important;
        height: 46px !important;
        background: #000000 !important;
        border-radius: 50% !important;
        border: none !important;
        outline: none !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    }
    
    .chatbot-widget.active,
    #simpleChatbotWidget.active,
    #chatbotWidget.active {
        width: 100vw !important;
        height: 100vh !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        border-radius: 0 !important;
    }
}

