/* Tailwind is loaded via CDN; this file adds minor tweaks and animations. */
html { scroll-behavior: smooth; }
body { background-color: #fff; }

/* Improve focus visibility */
:focus-visible {
  outline: 2px solid theme('colors.primary.DEFAULT');
  outline-offset: 2px;
}

/* Simple fade-in for calculator updates */
.fade-update {
  transition: background-color 200ms ease, color 200ms ease;
}