html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}
body {
  font-family: 'Roboto', sans-serif;
  background-color: #eaeaea;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

header, .site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #9E9E9E;
  padding: 0.8rem 9rem;
  color: #000000;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 960px;
  margin: 0;
}

.header-content img {
  height: 50px;
}

.header-content h2 {
  margin: 0;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
  max-width: 960px;
}
nav li {
  position: relative;
}

nav a {
  text-decoration: none;
  color: #000000;
  transition: all 0.2s ease;
}

nav a:hover {
  font-weight: 600;
  color: #1E1E1E;
}
nav .dropdown-content {
  display: none;
  position: absolute;
  background-color: #9E9E9E;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  top: 100%;
  left: 0;
  z-index: 1000;
}
nav li:hover .dropdown-content {
  display: block;
}

nav .dropdown-content div {
  margin: 0.3rem 0;
}
main.content {
  flex: 1;
  max-width: 960px;
  margin: 6rem auto 0 auto;
  padding: 0rem 3rem 5rem 3rem;
  background-color: #f9f9f9;
}


.content-box {
  background-color: white;
  padding: 2rem 3rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.content-box h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.content-box p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.button-container {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.button-container a {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  color: white;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

.button-container .planner {
  background-color: #2e7d32;
}

.button-container .planner:hover {
  background-color: #1b5e20;
}

.button-container .report {
  background-color: #8d6e63;
}

.button-container .report:hover {
  background-color: #5d4037;
}

footer, .site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #9E9E9E;
  padding: 0.5rem 0;
  text-align: center;
  font-size: 0.9em;
  color: #000000;
  z-index: 999;
}

.site-footer a {
  color: #e0e0e0;
  text-decoration: underline;
}

.site-footer a:hover {
  color: white;
}

img {
  max-width: 100%;
  height: auto;
}

.downloads {
  list-style: none;
  padding-left: 0;
}

.downloads li {
  display: inline-block;
  margin-right: 1rem;
}
.github-fork-ribbon, .gh-header {
  display: none !important;
}
.copy-button {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 0.25em 0.6em;
  font-size: 0.8em;
  background-color: #cecece;
  border: 1px solid #000000;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 10;
}

.copy-button:hover {
  background-color: #1ac411;
}
pre {
  position: relative; /* Ermöglicht absolute Positionierung innerhalb */
  background-color: #b3b3b3;
  border: 1px solid #9e9e9e;
  border-radius: 6px;
  padding: 1em;
  overflow-x: auto;
  font-size: 0.95em;
}
h2[id] {
  scroll-margin-top: 8rem;
}
h3[id] {
  scroll-margin-top: 8rem;
}
h1[id] {
  scroll-margin-top: 8rem;
}
#top {
  scroll-margin-top: 8rem;
}