/* ====================================
   Typing Animation Styles
   ==================================== */
.typing-animation {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0px;
    background: transparent;
    border: none;
    margin: 0;
    animation: fadeIn 0.3s ease-in-out;
}

.typing-dots {
    display: flex;
    gap: 4px;
    align-items: center;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #2EB969;
    animation: typing 1.4s infinite ease-in-out;
}

.dot:nth-child(1) {
    animation-delay: -0.32s;
}

.dot:nth-child(2) {
    animation-delay: -0.16s;
}

.dot:nth-child(3) {
    animation-delay: 0s;
}

.typing-text {
    font-size: 14px;
    color: #94a3b8;
    font-style: italic;
}

@keyframes typing {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dark theme support */
.dark-theme .dot {
    background-color: #2EB969;
}

.dark-theme .typing-text {
    color: #cbd5e1;
}

