/* apps/frontend/src/styles.scss */
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol";
  font-size: 14px;
  color: var(--text-color);
  background-color: var(--surface-ground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.p-component,
body .p-component {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 14px;
}
.p-toast-top-right {
  top: 70px !important;
}
app-root {
  height: 100%;
  display: block;
}
:root {
  --primary-color: #3B82F6;
  --primary-color-text: #ffffff;
  --surface-ground: #eff3f8;
  --surface-card: #ffffff;
  --surface-border: #dfe7ef;
  --text-color: #374151;
  --text-color-secondary: #6b7280;
  --border-radius: 6px;
}
body {
  background: var(--surface-ground);
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background: transparent;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
* {
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

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