/* styles.css */
.qa-container {
  max-width: 800px;
  margin: 2rem auto;
  font-family: system-ui, -apple-system, sans-serif;
}

.question-form {
  margin-bottom: 2rem;
}

.question-input, .reply-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  font-family: inherit;
}

.submit-button, .reply-button {
  background-color: #0066cc;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

.submit-button:hover, .reply-button:hover {
  background-color: #0052a3;
}

.feedback-message {
  margin-top: 0.5rem;
  font-weight: 500;
}

.feedback-message.error {
  color: #dc2626;
}

.feedback-message.success {
  color: #16a34a;
}

.questions-list h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.question-item {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.question-text {
  font-weight: 500;
  margin-bottom: 1rem;
}

.reply-text {
  margin-left: 1rem;
  font-style: italic;
  color: #4b5563;
  margin-bottom: 0.5rem;
}

.reply-form {
  margin-top: 1rem;
}

.reply-button {
  margin-top: 0.5rem;
}