body {
  font-family: Arial, sans-serif;
  background-color: #121212;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  color: #e0e0e0;
}

h1 {
  margin-bottom: 20px;
  color: #90caf9;
  text-align: center;
}

.header-container {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 40px auto 20px auto;
}

.menu-container {
  position: relative;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  z-index: 1000;
}

.hamburger {
  font-size: 24px;
  cursor: pointer;
  color: #e0e0e0;
  user-select: none;
  padding: 5px;
}

#current-page {
  font-size: 16px;
  margin-left: 5px;
  color: #e0e0e0;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  background: #1e1e1e;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.dropdown-menu a {
  display: block;
  color: #e0e0e0;
  padding: 8px;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #2e2e2e;
}

.log-section {
  background: #1e1e1e;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  width: 90%;
  max-width: 500px;
  height: 300px;
  overflow-y: auto;
  font-size: 14px;
}

.footer {
  margin-top: 15px;
  font-size: 16px;
  color: #bdbdbd;
  text-align: center;
  margin: 10px 0 20px 0;
}

.log {
  color: #e0e0e0;
}

.warn {
  color: #ffb74d;
}

.error {
  color: #e57373;
}

.clear-container {
  position: relative;
  /* Stellt sicher, dass der Button sich innerhalb davon bewegt */
  margin-top: 10px;
  right: 0px;
  width: 90%;
  max-width: 500px;
  min-height: 60px;
}

.clear-container button {
  position: absolute;
  /* Ermöglicht absolute Positionierung */
  right: 0px;
  /* Abstand vom rechten Rand */
  background: #e57373;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.clear-container button:hover {
  background: #d32f2f;
}