/* Estilos adicionales para el chatbot */
.chatbot-typing-indicator {
    display: flex;
    align-items: center;
}

.chatbot-typing-indicator span {
    margin-left: 8px;
}

.chatbot-typing-indicator::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #999;
    animation: chatbot-typing 1.4s infinite ease-in-out both;
}

.chatbot-typing-indicator::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #999;
    animation: chatbot-typing 1.4s infinite ease-in-out both;
    animation-delay: 0.2s;
    margin-right: 5px;
}

@keyframes chatbot-typing {
    0%, 80%, 100% { 
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% { 
        transform: scale(1);
        opacity: 1;
    }
}

/* Mejoras de responsive */
@media (max-width: 480px) {
    #chatbot-live-toggle {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .chatbot-header {
        padding: 10px;
    }
    
    .chatbot-messages {
        height: 200px;
        padding: 10px;
    }
    
    .faq-btn {
        font-size: 11px;
        padding: 6px 3px;
    }
}