/* You can add global styles to this file, and also import other style files */

/* Mobile-first global styles */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden; /* Prevent body scroll on mobile */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#root {
  height: 100vh;
  height: 100dvh; /* Use dynamic viewport height for mobile */
  overflow: hidden;
}

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
  /* Mobile touch styles */
  button,
  [role='button'] {
    min-height: 44px; /* iOS recommended touch target size */
    min-width: 44px;
  }

  /* Improve tap highlighting */
  * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  }
}
