
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
  background-color: #f0f0f0;
}

.container {
  text-align: center;
}

.ai-response-container {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
}

#question {
  font-weight: bold;
  margin-bottom: 1rem;
}

.think-container {
  margin-top: 1rem;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.think-toggle {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 10px;
}

.think-toggle:hover {
  background-color: #0056b3;
}

.think-content {
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  max-height: 1000px; /* A large enough value to show content */
}

.think-content.collapsed {
  max-height: 0;
}
