/* Minimal overrides to enforce a text-focused, flat design */
*,
*::before,
*::after {
  /* remove decorative rounding and shadows */
  box-shadow: none !important;
  border-radius: 0 !important;
  text-shadow: none !important;
}

/* remove any lingering outline-style shadows for interactive elements while preserving accessibility
   (keep focus outlines visible by leaving outline intact) */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  box-shadow: none !important;
}

/* make UI more text-forward: keep backgrounds simple and neutral where possible */
body {
  background-image: none !important;
}
