/* Animaciones */
.message-appear { animation: fadeIn 0.3s ease-out forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.typing-dot { animation: bounce 1.4s infinite ease-in-out both; }
.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }
@keyframes bounce { 0%, 80%, 100% { transform: scale(0); } 40% { transform: scale(1); } }

/* Estilos de Textarea y Form */
#user-input {
    outline: none !important;
    box-shadow: none !important;
}
#user-input::-webkit-scrollbar { display: none; }

/* Estilos para burbujas de mapa */
iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0.5rem;
}

/* Scrollbar Hide Global */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }