/* Admissions Unburdened Survey - Custom Styles */
/* Main styling is handled by Tailwind CSS via CDN */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom selection color */
::selection {
  background-color: rgba(99, 102, 241, 0.2);
  color: inherit;
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid #F97316;
  outline-offset: 2px;
}
