/* src/styles.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  background: #faf8f4;
  color: #1a1a1f;
  font-family:
    "Inter",
    "Noto Serif Georgian",
    system-ui,
    sans-serif;
  overflow-x: hidden;
  min-height: 100dvh;
}
::selection {
  background: rgba(200, 169, 106, 0.22);
  color: #1a1a1f;
}
:focus-visible {
  outline: 2px solid #c8a96a;
  outline-offset: 3px;
  border-radius: 4px;
}
.markdown-body table,
.markdown-body table.md-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(21, 19, 31, 0.1);
  border-radius: 14px;
  overflow: hidden;
  margin: 1.25rem 0;
  font-size: 0.88rem;
  line-height: 1.55;
  background: #fff;
}
.markdown-body table thead tr,
.markdown-body table.md-table thead tr {
  background: rgba(21, 19, 31, 0.04);
}
.markdown-body table th,
.markdown-body table.md-table th {
  background: rgba(21, 19, 31, 0.04);
  padding: 0.85rem 1.15rem;
  font-weight: 600;
  text-align: left;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b6778;
  border-bottom: 1px solid rgba(21, 19, 31, 0.08);
}
.markdown-body table td,
.markdown-body table.md-table td {
  padding: 0.85rem 1.15rem;
  border-top: 1px solid rgba(21, 19, 31, 0.08);
  color: #15131f;
  vertical-align: top;
}
.markdown-body table tbody tr:nth-child(even) td,
.markdown-body table.md-table tbody tr:nth-child(even) td {
  background: rgba(21, 19, 31, 0.02);
}
.markdown-body table tbody tr:hover td,
.markdown-body table.md-table tbody tr:hover td {
  background: rgba(10, 143, 96, 0.04);
}
.markdown-body table strong,
.markdown-body table b,
.markdown-body table.md-table strong,
.markdown-body table.md-table b {
  font-weight: 700;
  color: #15131f;
}
.markdown-body ul {
  list-style-type: disc;
  list-style-position: outside;
  margin: 0.5rem 0 0.85rem 1.5rem;
  padding-left: 1.25rem;
}
.markdown-body ul ul {
  list-style-type: circle;
  margin: 0.3rem 0 0.45rem 0.85rem;
  padding-left: 1.15rem;
}
.markdown-body ul ul ul {
  list-style-type: square;
  margin: 0.2rem 0 0.35rem 0.75rem;
  padding-left: 1rem;
}
.markdown-body ol {
  list-style-type: decimal;
  list-style-position: outside;
  margin: 0.5rem 0 0.85rem 1.5rem;
  padding-left: 1.25rem;
}
.markdown-body ol ol {
  list-style-type: lower-alpha;
  margin: 0.3rem 0 0.45rem 0.85rem;
  padding-left: 1.15rem;
}

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