/* Typing indicator styles */
.message.typing .message-content p {
    display: flex;
    align-items: center;
    font-style: italic;
    color: #666;
}

.dot-1, .dot-2, .dot-3 {
    animation: bounce 1.4s infinite ease-in-out;
    display: inline-block;
    margin-left: 2px;
}

.dot-1 {
    animation-delay: 0s;
}

.dot-2 {
    animation-delay: 0.2s;
}

.dot-3 {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 80%, 100% { 
        transform: scale(0);
        opacity: 0.5;
    }
    40% { 
        transform: scale(1.0);
        opacity: 1;
    }
}