/* aiThinking.css */

@keyframes textColorChange {
  0%, 100% { color: #FF0000; text-shadow: 0 0 10px #FF0000; }  /* Red */
  25% { color: #00FF00; text-shadow: 0 0 10px #00FF00; } /* Green */
  50% { color: #0000FF; text-shadow: 0 0 10px #0000FF; } /* Blue */
  75% { color: #FFD700; text-shadow: 0 0 10px #FFD700; } /* Gold */
}

#aiThinking {
  display: none;
  position: fixed;
  width: 80%;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  animation: textColorChange 1s infinite;
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border-radius: 15px;
  z-index: 99999999;
}

#enhanceSystemPromptBtn,
#enhanceFirstMessageBtn {
  font-size: 16px;
  cursor: pointer;
  animation: textColorChange 5s infinite;
  display: inline-block;
}

.blinking-robot {
  margin-left: auto;
}