﻿/* ==========================================================================
   DASHBOARD CORE RESET & BASE STYLES
   ========================================================================== */

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

html {
  font-size: 15px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background-color: var(--bg-app);
  color: var(--text-primary);
  font-family: var(--font-sans-en);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  display: flex;
}

html[lang="ar"] body,
[dir="rtl"] body {
  font-family: var(--font-sans-ar);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

ul, ol {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.font-mono { font-family: var(--font-mono); }
