/* MIGRATED TO TAILWIND - Base styles
   Tailwind Preflight handles reset
   Body styles now in HTML: bg-gray-100 dark:bg-gray-900 min-h-screen font-sans

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #F5F5F5;
  color: #333333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
*/