.chat-message-aso.is-thinking .chat-message-bubble,
.chat-message-candido.is-thinking .chat-message-bubble {
  background: rgba(30, 41, 59, 0.3);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  color: var(--text-muted);
}

.thinking-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.thinking-spinner {
  position: relative;
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 0;
}

.thinking-spinner::before {
  content: "";
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-top-color: rgba(255, 255, 255, 0.9);
  border-right-color: rgba(255, 213, 79, 0.95);
  animation: codexThinkingSpin 0.9s linear infinite;
}

.thinking-label {
  display: inline-block;
  letter-spacing: 0.01em;
}

@keyframes codexThinkingSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
