@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap";

/* src/styles.scss */
body {
  margin: 0;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  background-color: #0f172a;
  color: #f8fafc;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  min-height: 100vh;
}
* {
  box-sizing: border-box;
}
a {
  color: #6366f1;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #4f46e5;
  text-decoration: underline;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: #f8fafc;
  font-weight: 700;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0f172a;
}
::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgb(70.125, 89.375, 116.875);
}
@media print {
  body * {
    visibility: hidden;
  }
  .analysis-container,
  .analysis-container * {
    visibility: visible;
  }
  .analysis-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    max-width: none !important;
  }
  ::-webkit-scrollbar {
    display: none;
  }
  body {
    background-color: white !important;
  }
}

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