/*
 * base.css — Reset + base typography (Phase 0)
 */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  direction: rtl;
  font-family: system-ui, -apple-system, "Segoe UI", Tahoma, "Noto Sans Arabic", Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 1rem;
  background-color: #fafafa;
  color: #212121;
}

#app {
  min-height: 100vh;
}
