.log-entry.waiting {
  border-left-color: #cbd5e0;
  background: linear-gradient(135deg, rgba(247, 250, 252, 0.92) 0%, rgba(255, 255, 255, 0.98) 100%);
  opacity: 0;
  transform: translateY(4px);
  animation: waitingFadeIn 0.18s ease-out forwards;
}

.waiting-indicator {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #718096;
  font-weight: 500;
}

.waiting-indicator-label {
  letter-spacing: 0.01em;
}

.waiting-indicator-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.waiting-indicator-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #a0aec0;
  box-shadow: 0 0 0 1px rgba(160, 174, 192, 0.12);
  animation: waitingWave 1.2s infinite ease-in-out;
}

.waiting-indicator-dot:nth-child(2) {
  animation-delay: 0.16s;
}

.waiting-indicator-dot:nth-child(3) {
  animation-delay: 0.32s;
}

@keyframes waitingFadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .log-entry.waiting {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .waiting-indicator-dot {
    animation: none;
    opacity: 0.7;
  }
}
