/* node_modules/material-symbols/rounded.css */
@font-face {
  font-family: "Material Symbols Rounded";
  font-style: normal;
  font-weight: 100 700;
  font-display: block;
  src: url("./media/material-symbols-rounded.woff2") format("woff2");
}
.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga";
}

/* src/styles.css */
:root {
  --color-primary: #16766f;
  --color-primary-soft: #dff5f1;
  --color-sidebar: #10243e;
  --color-canvas: #f4f7fa;
  --color-surface: #fff;
  --color-ink: #172033;
  --color-muted: #667085;
  --color-border: #e1e7ee;
  --sidebar-width: 270px;
  --header-height: 76px;
  color-scheme: light;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}
* {
  box-sizing: border-box;
}
html,
body {
  min-width: 320px;
  min-height: 100%;
  background: var(--color-canvas);
}
body {
  min-height: 100dvh;
  margin: 0;
  color: var(--color-ink);
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
:focus-visible {
  outline: 3px solid rgb(22 118 111 / 28%);
  outline-offset: 2px;
}
h1 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  letter-spacing: -.035em;
}

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