/* Custom overrides on top of Tailwind */

/* Comparison body prose styling */
.prose h2 { font-size: 1.25rem; font-weight: 700; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.prose h3 { font-size: 1.1rem; font-weight: 600; margin-top: 1.25rem; margin-bottom: 0.4rem; }
.prose p  { margin-bottom: 1rem; line-height: 1.75; color: #374151; }
.prose ul, .prose ol { margin: 0.5rem 0 1rem 1.25rem; }
.prose li { margin-bottom: 0.25rem; }
.prose a  { color: #2563eb; text-decoration: underline; }

/* Form inputs */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.15s;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}
textarea { min-height: 100px; resize: vertical; }
