/* Reset Vite defaults that center the app and constrain width */
:root {
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ensure proper Unicode rendering for all languages including Arabic */
* {
  unicode-bidi: isolate;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  overflow-x: hidden; /* Prevent horizontal scroll only */
  overflow-y: auto; /* Allow vertical page scroll */
  background: #0d0d0d;
  color: #ececec;
}

#root {
  width: 100%;
  min-height: 100%;
  overflow: visible; /* Allow page scroll */
}
