/* ============================================================================
   CHAT LOADING ANIMATION - 3 DOTS
   ============================================================================ */

.ai-chat-loading {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ai-chat-loading-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #1FD084;
  animation: chatLoadingBounce 1.4s infinite;
}

.ai-chat-loading-dot:nth-child(1) {
  animation-delay: 0s;
}

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

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

@keyframes chatLoadingBounce {
  0%, 80%, 100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-10px);
  }
}
