.loading-wrapper {
  display: flex;
  justify-content: flex-start;
  background-color: #f5f5f5;
  padding: 12px 16px;
  border-radius: 16px;
  max-width: fit-content;
}

.dots {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 8px 12px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #999;
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out;
}

.dot:nth-child(1) {
  animation-delay: 0s;
}
.dot:nth-child(2) {
  animation-delay: 0.2s;
}
.dot:nth-child(3) {
  animation-delay: 0.4s;
}

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