/* Estilos para los puntos de escritura */
.typing-dot {
    width: 8px;
    height: 8px;
    background-color: #9CA3AF;
    border-radius: 50%;
    display: inline-block;
    animation: typing 1.5s infinite ease-in-out;
}

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

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

@keyframes typing {
    0%, 100% {
        transform: scale(0.7);
        opacity: 0.4;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Estilos para efectos hover y transiciones suaves */
.agent-card {
    transition: all 0.3s ease;
}

.agent-card:hover {
    transform: translateY(-2px);
}

/* Estilos para el scroll del chat */
#chat-container::-webkit-scrollbar {
    width: 6px;
}

#chat-container::-webkit-scrollbar-track {
    background: #F3F4F6;
    border-radius: 3px;
}

#chat-container::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 3px;
}

#chat-container::-webkit-scrollbar-thumb:hover {
    background: #9CA3AF;
}