@import "https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Inconsolata:wght@400;600;700&family=Inter:wght@400;500;600;700&display=swap";

/* projects/canvas-viewer/src/styles.scss */
html {
  --serif:
    "Source Serif 4",
    "Iowan Old Styple",
    "Apple Garamond",
    "Palatino Linotype",
    "Times New Roman",
    "Droid Serif",
    Times,
    serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol";
  --sans-serif:
    Inter,
    -apple-system,
    "system-ui",
    "avenir next",
    avenir,
    helvetica,
    "helvetica neue",
    ubuntu,
    roboto,
    noto,
    "segoe ui",
    arial,
    sans-serif;
  --separator: 1px solid var(--color-line);
  --canvas-width: 900px;
}
html a {
  color: var(--link-color);
}
html[data-theme=dark] {
  --color-bg: #1a1a1a;
  --color-fg: #ffffff;
  --text-color: #ffffff;
  --muted-text-color: #9ca3af;
  --muted-bg-color: #252525;
  --color-line: #374151;
  --link-color: #60a5fa;
  --grey-20: #252525;
  --grey-40: #3d3d3d;
  --table-header-bg: #1a1a1a;
  --table-header-border-color: #a3a3a3;
}
html[data-theme=light] {
  --color-bg: #ffffff;
  --color-fg: #1a1a1a;
  --text-color: #1a1a1a;
  --muted-text-color: #6b7280;
  --muted-bg-color: #f3f4f6;
  --color-line: #e5e7eb;
  --link-color: #3b82f6;
  --grey-20: #fafafa;
  --grey-40: #e0e0e0;
  --table-header-bg: #fff;
  --table-header-border-color: #757575;
}
[data-theme=dark] {
  --subtle-bg-color: #222;
  --loader-bg: hsl(0, 0%, 15%);
  --loader-fg: hsl(210, 90%, 65%);
}
[data-theme=light] {
  --subtle-bg-color: #f5f5f5;
  --loader-bg: hsl(0, 0%, 85%);
  --loader-fg: hsl(210, 90%, 45%);
}
html {
  --mono:
    "Inconsolata",
    monospace,
    var(--sans-serif);
  --white: light-dark(#ffffff, #000000);
  --black: light-dark(#000000, #ffffff);
}
:root {
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
}
body {
  margin: 0;
  padding: 0;
  background-color: var(--color-bg);
  color: var(--color-fg);
}
body .no-markdown-message {
  border: 1px dashed var(--mat-sys-outline-variant);
  background: var(--mat-sys-surface-bright);
  padding: 1rem 0;
  color: var(--mat-sys-on-surface-variant);
}
body .no-markdown-message p {
  text-align: center;
  margin: 0 auto;
  font-weight: normal;
}
body .markdown-content {
  font-family: var(--md-primary-family, var(--serif));
  font-size: var(--md-font-size, 1rem);
  line-height: 1.4;
  color: var(--text-color);
  background: transparent;
  max-width: none;
}
body .markdown-content h1,
body .markdown-content h2,
body .markdown-content h3,
body .markdown-content h4,
body .markdown-content h5,
body .markdown-content h6 {
  font-family: inherit;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  color: var(--color-fg);
  letter-spacing: -0.02em;
}
body .markdown-content h1:first-child,
body .markdown-content h2:first-child,
body .markdown-content h3:first-child,
body .markdown-content h4:first-child,
body .markdown-content h5:first-child,
body .markdown-content h6:first-child {
  margin-top: 0;
}
body .markdown-content h1 {
  font-family: var(--md-primary-family, var(--serif));
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
  padding-bottom: 0;
  font-weight: normal;
}
body .markdown-content h2 {
  font-size: 1.5rem;
  font-weight: normal;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0;
}
body .markdown-content h3 {
  font-size: 1.25rem;
  font-weight: normal;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
body .markdown-content h4 {
  font-size: 1.125rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
body .markdown-content h5 {
  font-size: 1.125rem;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}
body .markdown-content h6 {
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
body .markdown-content p {
  margin: 0 0 1.25rem 0;
  padding: 0;
  text-align: left;
  hyphens: auto;
}
body .markdown-content ul,
body .markdown-content ol {
  margin: 0 0 1.25rem 0;
  padding-left: 1.75rem;
  font-size: var(--md-font-size, 1rem);
}
body .markdown-content ul li,
body .markdown-content ol li {
  margin: 0 0 0.5rem 0;
  padding: 0;
  line-height: 1.6;
}
body .markdown-content ul ul,
body .markdown-content ul ol,
body .markdown-content ol ul,
body .markdown-content ol ol {
  margin: 0.5rem 0;
}
body .markdown-content ul {
  list-style-type: disc;
}
body .markdown-content ol {
  list-style-type: decimal;
}
body .markdown-content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: #f8fafc;
  border-left: 4px solid #3b82f6;
  font-style: italic;
}
body .markdown-content blockquote p:last-child {
  margin-bottom: 0;
}
body .markdown-content code {
  font-family:
    "SF Mono",
    Monaco,
    "Cascadia Code",
    "Roboto Mono",
    Consolas,
    "Courier New",
    monospace;
  font-size: 0.875rem;
  background: var(--muted-bg-color);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  border: 1px solid var(--grey-20);
}
body .markdown-content code.language-error {
  background: #fee2e2;
  color: #b91c1c;
  border-color: #fecaca;
  font-size: 12px;
}
body .markdown-content pre {
  margin: 1.5rem 0;
  padding: 1rem;
  background: var(--muted-bg-color);
  border: 1px solid var(--grey-20);
  border-radius: 0.5rem;
  overflow-x: auto;
  font-family:
    "SF Mono",
    Monaco,
    "Cascadia Code",
    "Roboto Mono",
    Consolas,
    "Courier New",
    monospace;
  font-size: 0.875rem;
  line-height: 1.5;
}
body .markdown-content pre code {
  background: transparent;
  border: none;
  padding: 0;
  font-size: inherit;
  color: inherit;
}
body .markdown-content table {
  --md-font-size: 0.75rem;
  --md-primary-family: var(--sans-serif);
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: var(--sans-serif);
  font-variant-numeric: tabular-nums;
}
body .markdown-content table caption {
  text-align: left;
}
body .markdown-content table tbody tr:not(:last-child) > td {
  border-bottom: 1px solid var(--table-border-color, var(--grey-40));
}
body .markdown-content table.canvas-table-alt-rows tbody tr:nth-child(even) {
  background-color: var(--table-row-alt-bg, var(--grey-20));
}
body .markdown-content table td,
body .markdown-content table th {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 0.5rem 0.25rem;
  font-size: 0.8rem;
}
body .markdown-content table thead td,
body .markdown-content table thead th {
  position: sticky;
  top: var(--table-caption-height, 0px);
  background: var(--table-header-bg, var(--white));
  cursor: ns-resize;
  font-weight: bold;
}
body .markdown-content table caption {
  position: sticky;
  top: 0;
  z-index: 3;
  background: var(--table-caption-bg, var(--white));
}
body .markdown-content table tfoot td,
body .markdown-content table tfoot th {
  position: sticky;
  bottom: 0;
  z-index: 2;
  background: var(--table-footer-bg, var(--white));
}
body .markdown-content table tr.canvas-table-footer-spacer td {
  height: var(--table-footer-height, 0px);
  padding: 0;
  border: 0;
  background: transparent;
}
body .markdown-content table .no-columns > div {
  display: flex;
  height: 256px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--mat-sys-surface-container-low);
}
body .markdown-content table tfoot .markdown-content p {
  margin: 0;
}
body .markdown-content table tfoot .markdown-content ul li,
body .markdown-content table tfoot .markdown-content ol li {
  margin: 0;
  line-height: 1rem;
  padding-left: 1rem;
}
body .markdown-content a {
  color: #3b82f6;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}
body .markdown-content a:hover {
  color: #1d4ed8;
  border-bottom-color: #3b82f6;
}
body .markdown-content a:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}
body .markdown-content hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid #e5e7eb;
  background: transparent;
  height: 0;
}
body .markdown-content strong,
body .markdown-content b {
  font-weight: 600;
  color: var(--color-fg);
}
body .markdown-content em,
body .markdown-content i {
  font-style: italic;
}
body .markdown-content > *:first-child {
  margin-top: 0 !important;
}
body .markdown-content > *:last-child {
  margin-bottom: 0 !important;
}
body .markdown-content [data-footnote-ref] {
  font-size: 0.6rem;
  vertical-align: super;
  line-height: 1;
  color: #6b7280;
  cursor: pointer;
  text-decoration: none;
  border-bottom: 1px dotted #6b7280;
}
body figure figcaption {
  font-size: 0.8rem;
  color: var(--grey-text);
  margin-top: 0.5rem;
}
body div.canvas-table {
  overflow: auto;
  border-bottom: 1px solid var(--table-border-color, var(--grey-40));
}
body div.canvas-table table.canvas-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: var(--sans-serif);
  font-variant-numeric: tabular-nums;
}
body div.canvas-table table.canvas-table caption {
  text-align: left;
}
body div.canvas-table table.canvas-table tbody tr:not(:last-child) > td {
  border-bottom: 1px solid var(--table-border-color, var(--grey-40));
}
body div.canvas-table table.canvas-table.canvas-table-alt-rows tbody tr:nth-child(even) {
  background-color: var(--table-row-alt-bg, var(--grey-20));
}
body div.canvas-table table.canvas-table td,
body div.canvas-table table.canvas-table th {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 0.5rem 0.25rem;
  font-size: 0.8rem;
}
body div.canvas-table table.canvas-table thead td,
body div.canvas-table table.canvas-table thead th {
  position: sticky;
  top: var(--table-caption-height, 0px);
  background: var(--table-header-bg, var(--white));
  cursor: ns-resize;
  font-weight: bold;
}
body div.canvas-table table.canvas-table caption {
  position: sticky;
  top: 0;
  z-index: 3;
  background: var(--table-caption-bg, var(--white));
}
body div.canvas-table table.canvas-table tfoot td,
body div.canvas-table table.canvas-table tfoot th {
  position: sticky;
  bottom: 0;
  z-index: 2;
  background: var(--table-footer-bg, var(--white));
}
body div.canvas-table table.canvas-table tr.canvas-table-footer-spacer td {
  height: var(--table-footer-height, 0px);
  padding: 0;
  border: 0;
  background: transparent;
}
body div.canvas-table table.canvas-table .no-columns > div {
  display: flex;
  height: 256px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--mat-sys-surface-container-low);
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

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