/* docs/extra.css */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');


/* Make container full width */
.md-grid {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 2rem;  /* Adjust this for horizontal padding */
}

/* Font settings */
body,
.md-typeset {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #2b2b2b;
  font-size: 16px;
  line-height: 1.8;
}

/* Headings */
.md-typeset h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 1rem;
}

.md-typeset h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #222222;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* Paragraphs */
.md-typeset p {
  margin-bottom: 1.25rem;
}

/* Padding adjustments */
.md-content {
  padding: 2rem;
}

.md-main__inner {
  max-width: 960px;
  margin: auto;
  padding: 1.5rem;
}

.clickable-label {
  display: inline-block;
  cursor: pointer;
  padding-right: 8px;
  color: var(--md-primary-fg);
}

.md-nav__toggle {
  cursor: pointer;
  user-select: none;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.md-nav__item--expanded > .md-nav__toggle {
  transform: rotate(90deg);
}