/* ===== GLOBAL RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Dashboard background */
  background: linear-gradient(
    135deg,
    #0f2a52 0%,
    #123a6f 40%,
    #0b4a8b 100%
  );

  color: #0f172a;
}
