/* .llm-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  animation: llm-spin 1s linear infinite;
}

@keyframes llm-spin {
  to {
    transform: rotate(360deg);
  }
} */

.llm-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #ccc;
  border-top: 3px solid #333;
  border-radius: 50%;
  animation: llm-spin 1s linear infinite;
  vertical-align: middle;
  margin-right: 0.5rem;
}

@keyframes llm-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
form button.button {
  background-color: #d9534f;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  cursor: pointer;
}

form button.button:hover {
  background-color: #c9302c;
}
#llm-response::after {
  content: "|";
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

#llm-response {
            border: 2px solid #ddd;
            padding: 20px;
            border-radius: 8px;
            background-color: #f9f9f9;
            min-height: 100px;
        }
        
        /* Styling for HTML elements */
        h2 { color: #2c3e50; }
        strong { color: #e74c3c; font-weight: bold; }
        em { color: #8e44ad; }
        code { 
            background-color: #34495e; 
            color: white;
            padding: 2px 6px; 
            border-radius: 4px; 
            font-family: monospace;
        }
        ul { margin: 15px 0; }
        li { margin: 5px 0; }
        .highlight { background-color: yellow; padding: 2px; }
        