/* src/styles.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background:
    linear-gradient(
      135deg,
      #0f0f23 0%,
      #1a1a2e 50%,
      #16213e 100%);
  color: #e2e8f0;
  overflow-x: hidden;
}
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #1a1a2e;
}
::-webkit-scrollbar-thumb {
  background: #4a5568;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #718096;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
