/* Executive Ledger PRO - minimal global CSS */

html, body {
  height: 100%;
  width: 100%;
}

body {
  margin: 0;
  background: #07030f;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Prevent elastic overscroll glow on some browsers */
html {
  overscroll-behavior: none;
}

/* Make tap interactions feel app-like */
* {
  -webkit-tap-highlight-color: transparent;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
