/* light */
.markdown-body-light {
  color-scheme: light;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  margin: 0;
  /* Changed base color from #1f2328 to a softer gray */
  color: #4a4a4a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  /* Increased font size */
  font-size: 20px;
  line-height: 1.5;
  word-wrap: break-word;
}

.markdown-body-light .octicon {
  display: inline-block;
  fill: currentColor;
  vertical-align: text-bottom;
}

/* Heading adjustments */
.markdown-body-light h1 {
  /* Explicitly set heading color to black */
  color: #000000;
  margin: 0.67em 0;
  font-weight: 600;
  padding-bottom: 0.3em;
  font-size: 2em;
  width: 100%;
  text-align: center;
}

/* Listing layout fix: give ul/ol some margin, keep indent */
.markdown-body-light ul,
.markdown-body-light ol {
  margin-top: 1em;
  margin-bottom: 1em;
  padding-left: 2em; /* Keep indentation */
}

.markdown-body-light ol {
  list-style-type: decimal; /* Add numbers for ordered lists */
}

.markdown-body-light ul {
  list-style-type: disc; /* Add bullet points */
}

.markdown-body-light ul ul {
  list-style-type: circle; /* Use a different style for nested lists */
}

.markdown-body-light ul ul ul {
  list-style-type: square; /* Use a different style for deeper nested lists */
}

.markdown-body-light h1,
.markdown-body-light h2,
.markdown-body-light h3,
.markdown-body-light h4,
.markdown-body-light h5,
.markdown-body-light h6 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.25;
  color: black; /* Removed quotes for proper CSS syntax */
}

.markdown-body-light a {
  color: #58a6ff; /* Changed from #0366d6 to a Medium-style blue */
  text-decoration: "underline";
}

.markdown-body-light h1 {
  font-size: 2.5rem; /* Largest size */
}

.markdown-body-light h2 {
  font-size: 2rem;
}

.markdown-body-light h3 {
  font-size: 1.75rem;
}

.markdown-body-light h4 {
  font-size: 1.5rem;
}

.markdown-body-light h5 {
  font-size: 1.25rem;
}

.markdown-body-light h6 {
  font-size: 1rem; /* Smallest size */
}

.markdown-body-light hr {
  box-sizing: content-box;
  overflow: hidden;
  background: transparent;
  border-bottom: 1px solid #d1d9e0b3;
  height: 0.25em;
  padding: 0;
  margin: 1.5rem 0;
  background-color: #d1d9e0;
  border: 0;
}

.markdown-body-light input {
  font: inherit;
  margin: 0;
  overflow: visible;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* Keep remaining styles unchanged unless specific changes are needed */

.markdown-body-light p:has(img) {
  width: 100%;
  display: flex;
  justify-content: center;
}