/**
 * Convexa AI Chat Agent - Chatbot Specific Styles
 */

.convexa-typing-indicator {
    display: flex;
    gap: 4px;
    padding: 10px;
}

.convexa-typing-indicator span {
    width: 8px;
    height: 8px;
    background: #999;
    border-radius: 50%;
    animation: convexa-typing 1.4s infinite;
}

.convexa-typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.convexa-typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes convexa-typing {
    0%, 60%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    30% {
        opacity: 1;
        transform: translateY(-8px);
    }
}

.convexa-error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-radius: 8px;
    margin: 10px;
    border: 1px solid #f5c6cb;
}

.convexa-powered-by {
    text-align: center;
    font-size: 11px;
    color: #999;
    padding: 8px;
    border-top: 1px solid #e5e5e5;
}
