/* Larger base font */
.md-typeset {
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Headings */
.md-typeset h1 {
  font-size: 2rem;
  border-bottom: 3px solid var(--md-primary-fg-color);
  padding-bottom: 0.4rem;
}

.md-typeset h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  border-bottom: 1px solid var(--md-default-fg-color--lightest);
  padding-bottom: 0.3rem;
}

.md-typeset h3 {
  font-size: 1.2rem;
  margin-top: 2rem;
  color: var(--md-primary-fg-color);
}

/* Tables — full width, clean style */
.md-typeset__scrollwrap {
  overflow-x: visible;
}

.md-typeset__table {
  display: block;
  width: 100%;
  padding: 0;
}

.md-typeset table:not([class]) {
  border-collapse: collapse;
  font-size: 0.8rem;
  display: table;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.md-typeset table:not([class]) thead th {
  background: var(--md-primary-fg-color);
  color: white;
  font-weight: 600;
  padding: 0.7rem 1rem;
  text-align: left;
  border: none;
}

.md-typeset table:not([class]) tbody td {
  padding: 0.55rem 1rem;
  border-bottom: 1px solid var(--md-default-fg-color--lightest);
}

.md-typeset table:not([class]) tbody tr:hover {
  background: var(--md-accent-fg-color--transparent);
}

.md-typeset table:not([class]) tbody tr:last-child td {
  border-bottom: none;
}

/* Bullet points — visible, properly spaced */
.md-typeset ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin: 0.5rem 0 1rem;
}

.md-typeset ul ul {
  list-style-type: circle;
}

.md-typeset ol {
  padding-left: 1.5rem;
  margin: 0.5rem 0 1rem;
}

.md-typeset li {
  margin-bottom: 0.3rem;
}

/* Make sure bullets are visible */
.md-typeset ul li::marker {
  color: var(--md-primary-fg-color);
  font-size: 1.1em;
}

.md-typeset ol li::marker {
  color: var(--md-primary-fg-color);
  font-weight: 600;
}

/* Dash-style lists (- item) rendered as bullets */
.md-typeset li p {
  margin: 0;
  display: inline;
}

/* Bold = orange accent for Konnektive etc */
.md-typeset strong {
  color: var(--md-accent-fg-color);
}

/* Blockquotes — dialogue style */
.md-typeset blockquote {
  border-left: 4px solid var(--md-primary-fg-color);
  background: var(--md-code-bg-color);
  padding: 0.8rem 1.2rem;
  margin: 1rem 0;
  border-radius: 0 8px 8px 0;
}

.md-typeset blockquote p {
  margin: 0.3rem 0;
}

/* Horizontal rules — more spacing */
.md-typeset hr {
  margin: 2.5rem 0;
}

/* Content area wider */
.md-content {
  max-width: none;
}

.md-grid {
  max-width: 1400px;
}

/* [formal] / [informell] markers */
.md-typeset span.marker-formal {
  color: var(--md-primary-fg-color);
  font-weight: bold;
  font-size: 0.8em;
}

.md-typeset span.marker-informal {
  color: #2b8a3e;
  font-weight: bold;
  font-size: 0.8em;
}
