/* GitHub-like Markdown styling scoped to .wg-docs */
.wg-docs {
  color: #24292f;
  font-size: 15px;
  line-height: 1.6;
}

.wg-docs h1,
.wg-docs h2,
.wg-docs h3,
.wg-docs h4,
.wg-docs h5,
.wg-docs h6 {
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 16px;
  line-height: 1.25;
}

.wg-docs h1 {
  font-size: 2em;
  border-bottom: 1px solid #d0d7de;
  padding-bottom: 0.3em;
}

.wg-docs h2 {
  font-size: 1.5em;
  border-bottom: 1px solid #d0d7de;
  padding-bottom: 0.3em;
}

.wg-docs h3 {
  font-size: 1.25em;
}

.wg-docs p {
  margin-bottom: 16px;
}

.wg-docs a {
  color: #0969da;
  text-decoration: none;
}

.wg-docs a:hover {
  text-decoration: underline;
}

.wg-docs ul,
.wg-docs ol {
  padding-left: 2em;
  margin-bottom: 16px;
}

.wg-docs li + li {
  margin-top: 0.25rem;
}

.wg-docs code {
  background: rgba(175, 184, 193, 0.2);
  padding: 0.15em 0.35em;
  border-radius: 6px;
  font-size: 0.9em;
}

.wg-docs pre {
  background: #0d1117;
  color: #c9d1d9;
  padding: 16px;
  border-radius: 6px;
  overflow: auto;
  font-size: 0.9em;
  line-height: 1.5;
}

.wg-docs pre code {
  background: transparent;
  padding: 0;
  border-radius: 0;
  color: inherit;
}

.wg-docs table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}

.wg-docs th,
.wg-docs td {
  border: 1px solid #d0d7de;
  padding: 6px 13px;
  text-align: left;
}

.wg-docs th {
  background: #f6f8fa;
  font-weight: 600;
}

.wg-docs blockquote {
  border-left: 0.25em solid #d0d7de;
  color: #57606a;
  padding: 0 1em;
  margin: 0 0 16px;
}

.wg-docs hr {
  border: 0;
  border-top: 1px solid #d0d7de;
  margin: 24px 0;
}

/* Dark mode */
html[data-theme="dark"] .wg-docs {
  color: #c9d1d9;
}

html[data-theme="dark"] .wg-docs h1,
html[data-theme="dark"] .wg-docs h2,
html[data-theme="dark"] .wg-docs h3,
html[data-theme="dark"] .wg-docs h4,
html[data-theme="dark"] .wg-docs h5,
html[data-theme="dark"] .wg-docs h6 {
  color: #f0f6fc;
}

html[data-theme="dark"] .wg-docs h1,
html[data-theme="dark"] .wg-docs h2,
html[data-theme="dark"] .wg-docs hr {
  border-color: #30363d;
}

html[data-theme="dark"] .wg-docs a {
  color: #58a6ff;
}

html[data-theme="dark"] .wg-docs code {
  background: rgba(110, 118, 129, 0.4);
  color: #e6edf3;
}

html[data-theme="dark"] .wg-docs pre {
  background: #161b22;
  color: #c9d1d9;
}

html[data-theme="dark"] .wg-docs table {
  border-color: #30363d;
}

html[data-theme="dark"] .wg-docs th,
html[data-theme="dark"] .wg-docs td {
  border-color: #30363d;
}

html[data-theme="dark"] .wg-docs th {
  background: #0d1117;
}

html[data-theme="dark"] .wg-docs blockquote {
  border-left-color: #30363d;
  color: #8b949e;
}
