/* Loading Indicator Styles */
.indicator {
  display: flex;
  align-items: center;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: var(--primary-text, #180F1E);
}

.indicator-message {
  margin-right: 0.5rem;
}

/* Dot Wave Animation */
.dot-wave {
  display: inline-flex;
  align-items: center;
  height: 1rem;
}

.dot {
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background-color: var(--primary-text, #180F1E);
  margin: 0 0.15rem;
  animation: dotWave 1.5s infinite ease-in-out;
}

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

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

@keyframes dotWave {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  30% {
    transform: translateY(-0.4rem);
    opacity: 1;
  }
}

/* Fade-in animation for the indicator */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.indicator {
  animation: fadeIn 0.3s ease-in-out;
}