
@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: 60%;
  max-width: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  animation: textColorChange 1s infinite;
  background: rgba(0, 0, 0, 0.8);
  padding: 15px;
  border-radius: 10px;
  z-index: 99999999;
}


#enhanceVeo3Btn,
#enhancePromptBtn,
#enhanceTextInputBtn {
  animation: textColorChange 1s infinite;
  cursor: pointer;
}
