/* 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 */
}

#aiThinking2 {
  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;
}

.blinking-robot {
  animation: textColorChange 2s infinite;
  display: block !important;
  font-size: 24px !important;
  cursor: pointer !important;
  transition: transform 0.2s ease;
  z-index: 99999999;
  float: right;
}

.blinking-robot:hover {
  transform: scale(1.2);
}

.ai-robot-icon {
  animation: textColorChange 1s infinite;
}

#description,
#editDescription,
#updatePhotoDescription {
line-height: 2;
line-break: auto;
min-height: 200px;
resize: none;
outline: none;
border: 2px solid #ccc;
}