/* Dark mode fix for form fields on iPhone and similar devices */
input,
textarea,
select {
  background-color: white;
  color: black;
}

input::placeholder,
textarea::placeholder {
  color: #666;
}

/* Use system default fonts */
body, input, textarea, select, button {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.text-green-600 {
  color: #16a34a;
}
.text-red-600 {
  color: #dc2626;
}
.audit-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fefbea;
  border: 1px solid #e6e0b8;
  border-radius: 6px;
  padding: 6px 12px;
  margin: 10px 0;
  font-size: 0.9rem;
  font-family: Arial, sans-serif;
  color: #5c4c1d;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
