body {
  max-width: 800px;
  margin: auto;
  padding: 1em;
  line-height: 1.5;
}

/* header and footer areas */
.menu { padding: 0; }
.menu li { display: inline-block; }
.article-meta, .menu a {
  text-decoration: none;
  background: #eee;
  padding: 5px;
  border-radius: 5px;
}
.menu, .article-meta, footer { text-align: center; }
.title { font-size: 1.1em; }
footer a { text-decoration: none; }
hr {
  border-style: dashed;
  color: #ddd;
}

/* code */
pre {
  border: 1px solid #ddd;
  box-shadow: 5px 5px 5px #eee;
  padding: 1em;
  overflow-x: auto;
}
code { background: #f9f9f9; }
pre code { background: none; }

/* misc elements */
img, iframe, video { max-width: 100%; }
main { hyphens: auto; }
blockquote {
  background: #f9f9f9;
  border-left: 5px solid #ccc;
  padding: 3px 1em 3px;
}

table {
  margin: auto;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
}
table thead th { border-bottom: 1px solid #ddd; }
th, td { padding: 5px; }
thead, tfoot, tr:nth-child(even) { background: #eee; }

/* Macht die Inline-Formeln im Text (z.B. \( 3 \)) etwas kleiner */
.katex {
  font-size: 0.94em !important; /* Verkleinert die Formel auf 92% der Textschriftgröße */
}

/* Macht die großen, freistehenden Block-Formeln (z.B. \[ ... \]) kleiner */
.katex-display {
  font-size: 1.1em !important; /* Etwas kleiner für abgesetzte Formeln */
  margin: 1.2rem 0 !important;   /* Regelt den Abstand nach oben und unten */
}

.smallcaps {
  font-variant: small-caps;
}

/* Grundstruktur des Menüs */
.menu-root {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex; /* Richtet Home, Buch, Kategorien nebeneinander aus */
  gap: 20px;
}

.menu-item {
  position: relative; /* Wichtig für die Positionierung des Dropdowns */
}

/* Versteckt das Untermenü standardmäßig */
.menu-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid #ccc;
  list-style: none;
  padding: 10px;
  min-width: 200px;
  z-index: 100;
}

/* Zeigt das Untermenü an, wenn man mit der Maus über den Hauptpunkt fährt */
.menu-item:hover .menu-dropdown {
  display: block;
}

.menu-sub-item {
  margin: 5px 0;
}

/* Optischer Marker für aktive Seiten */
.active > a {
  font-weight: bold;
  border-bottom: 2px solid #333;
}

/* Das Hauptmenü als Kacheln stylen */
.menu-root {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.menu-item a, .menu-sub-item a {
  display: inline-block;
  background-color: #000000 !important; /* Tiefschwarz */
  color: #ffffff !important;            /* Reinweiß */
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
}

/* Zustand beim Drüberfahren (Optional, für ein wenig Feedback) */
.menu-item a:hover, .menu-sub-item a:hover {
  background-color: #333333 !important; /* Dunkelgrau beim Hovern */
}
