/* ЯДЕРНЫЙ ВАРИАНТ - ПОЛНОЕ УНИЧТОЖЕНИЕ ВСЕХ СТИЛЕЙ КНОПКИ ОТПРАВКИ */
/* ЗАГРУЖАЕТСЯ САМЫМ ПОСЛЕДНИМ - ПЕРЕКРЫВАЕТ ВСЁ */

/* ВСЕ ВОЗМОЖНЫЕ СЕЛЕКТОРЫ */
#simpleChatbotSend,
.chatbot-send,
button#simpleChatbotSend,
button.chatbot-send,
button[id="simpleChatbotSend"],
button[class="chatbot-send"],
.chatbot-input-wrapper > button,
.chatbot-input-wrapper button:last-child,
.chatbot-input-area button,
.chatbot-input-area .chatbot-send,
button[id*="Send"],
button[class*="send"],
*[id*="chatbotSend"],
*[class*="chatbot-send"],
.chatbot-widget button.chatbot-send,
#simpleChatbotWidget button,
#simpleChatbotWidget .chatbot-send {
    /* ==================== */
    /* УНИЧТОЖАЕМ ВСЕ ФОНЫ */
    /* ==================== */
    background: none !important;
    background-color: rgba(0,0,0,0) !important;
    background-image: none !important;
    background-size: 0 !important;
    background-position: 0 0 !important;
    
    /* ==================== */
    /* УНИЧТОЖАЕМ ВСЕ РАМКИ */
    /* ==================== */
    border: 0 solid transparent !important;
    border-width: 0 !important;
    border-style: none !important;
    border-color: transparent !important;
    border-radius: 0 !important;
    
    /* ==================== */
    /* УНИЧТОЖАЕМ ВСЕ ТЕНИ */
    /* ==================== */
    box-shadow: none !important;
    text-shadow: none !important;
    
    /* ==================== */
    /* УНИЧТОЖАЕМ ВСЕ РАЗМЕРЫ */
    /* ==================== */
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 0 !important;
    max-height: none !important;
    
    /* ==================== */
    /* УНИЧТОЖАЕМ ЭФФЕКТЫ */
    /* ==================== */
    filter: none !important;
    backdrop-filter: none !important;
    
    /* ==================== */
    /* БАЗОВЫЕ СТИЛИ */
    /* ==================== */
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    flex-shrink: 0 !important;
    line-height: 0 !important;
    
    /* ==================== */
    /* ПОЗИЦИОНИРОВАНИЕ */
    /* ==================== */
    position: relative !important;
    margin: 0 !important;
    padding: 4px !important;
    
    /* ==================== */
    /* ВИДИМОСТЬ */
    /* ==================== */
    opacity: 0.6 !important;
    visibility: visible !important;
    
    /* ==================== */
    /* АНИМАЦИЯ */
    /* ==================== */
    transition: opacity 0.2s ease, transform 0.2s ease !important;
    
    /* ==================== */
    /* УБИРАЕМ OUTLINE */
    /* ==================== */
    outline: 0 solid transparent !important;
    outline-width: 0 !important;
    outline-style: none !important;
    outline-color: transparent !important;
    outline-offset: 0 !important;
}

/* HOVER - только opacity */
#simpleChatbotSend:hover,
.chatbot-send:hover,
button#simpleChatbotSend:hover,
button.chatbot-send:hover,
.chatbot-input-wrapper button:hover,
button[id*="Send"]:hover {
    background: none !important;
    background-color: rgba(0,0,0,0) !important;
    border: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    transform: translateX(4px) !important;
}

/* ACTIVE */
#simpleChatbotSend:active,
.chatbot-send:active {
    background: none !important;
    transform: translateX(2px) !important;
}

/* FOCUS */
#simpleChatbotSend:focus,
.chatbot-send:focus,
button#simpleChatbotSend:focus {
    background: none !important;
    background-color: rgba(0,0,0,0) !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* DISABLED */
#simpleChatbotSend:disabled,
.chatbot-send:disabled {
    background: none !important;
    opacity: 0.3 !important;
}

/* ==================== */
/* SVG СТРЕЛКА - ЧЕТКАЯ */
/* ==================== */
#simpleChatbotSend svg,
.chatbot-send svg,
button#simpleChatbotSend svg,
button.chatbot-send svg,
.chatbot-input-wrapper button svg,
button[id*="Send"] svg {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    max-width: 22px !important;
    min-height: 22px !important;
    max-height: 22px !important;
    stroke: #000000 !important;
    stroke-width: 2.5 !important;
    fill: none !important;
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    pointer-events: none !important;
    display: block !important;
    opacity: 1 !important;
}

/* Path внутри SVG */
#simpleChatbotSend svg path,
.chatbot-send svg path {
    stroke: #000000 !important;
    stroke-width: 2.5 !important;
    fill: none !important;
}

/* ==================== */
/* МОБИЛЬНАЯ ВЕРСИЯ */
/* ==================== */
@media (max-width: 768px) {
    #simpleChatbotSend,
    .chatbot-send,
    button#simpleChatbotSend,
    .chatbot-input-wrapper button {
        background: none !important;
        background-color: rgba(0,0,0,0) !important;
        border: none !important;
        box-shadow: none !important;
        padding: 3px !important;
        width: auto !important;
        height: auto !important;
    }
    
    #simpleChatbotSend svg,
    .chatbot-send svg,
    button#simpleChatbotSend svg {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px !important;
        max-width: 20px !important;
        stroke: #000000 !important;
        stroke-width: 2.5 !important;
    }
}

/* ==================== */
/* INPUT WRAPPER ВЫРАВНИВАНИЕ */
/* ==================== */
.chatbot-input-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    background: #f5f5f5 !important;
    border-radius: 12px !important;
    padding: 10px 12px !important;
    min-height: 44px !important;
}

.chatbot-input-area {
    padding: 12px !important;
}

/* INPUT */
.chatbot-input,
#simpleChatbotInput,
textarea.chatbot-input {
    flex: 1 !important;
    border: none !important;
    background: transparent !important;
    outline: none !important;
    resize: none !important;
    font-size: 14px !important;
    line-height: 20px !important;
    padding: 0 !important;
    margin: 0 !important;
    min-height: 20px !important;
    max-height: 100px !important;
    color: #333 !important;
}






