/***** Minimal site overrides; Tailwind is loaded via CDN *****/
:root {
  color-scheme: light dark;
}

/***** Brand helpers (in case Tailwind fails to load) *****/
.text-brand-600 {
  color: #4f46e5;
}

.bg-brand-600 {
  background-color: #4f46e5;
}

.bg-brand-700 {
  background-color: #4338ca;
}

/***** Forms fallback styling *****/
input,
select {
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  width: 100%;
}