#sidebar {
  position: fixed;
  top: 0;
  z-index: 9999;
  right: -300px; /* Startposition außerhalb des sichtbaren Bereichs auf der rechten Seite */
  width: 300px;
  height: 100vh;
  background-color: #f1f1f1;
  transition: right 0.3s ease-in;
  overflow-y: hidden;
}

#sidebar.open {
  right: 0; /* Neue Position, wenn das Menü geöffnet ist */
}

#close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background-color: #ccc;
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

#close-button:hover {
  background-color: #999;
}

#sidebar ul {
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

#sidebar ul li {
  margin: 10px 0;
}

#sidebar ul li a {
  display: flex;
  align-items: center;
  font-size: 17px;
  padding: 10px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.3s ease-in;
}

#sidebar ul li a:hover {
  background-color: #ccc;
  color: #fff;
}
