nav {
  height: 60px;
  background-color: var(--großeKachel);
  border-radius: 10px;
  position: absolute;
  right: 5px;
  top: 5px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: var(--SchriftGroße);
  font-weight: normal;
  color: var(--Schriftfarbe);
}
.links-container {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow-y: auto;
  overflow-x: hidden;
}
#sidebar-active {
  display: none;
}
.open-sidebar-button,
.close-sidebar-button {
  display: none;
}
.links-container {
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 10;
  width: 300px;
  background-color: var(--großeKachel);
  box-shadow: -5px 0 5px rgba(0, 0, 0, 0.25);
  transition: 0.75s ease-out;
}
.open-sidebar-button,
.close-sidebar-button {
  padding: 20px;
  display: block;
}
#sidebar-active:checked ~ .links-container {
  right: 0;
}
#sidebar-active:checked ~ #overlay {
  height: auto;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
}
#setTime,
#setStyle {
  height: 40px;
  width: 100%;
  padding: 20px 20px;
  border: 1px solid var(--Umrandung);
  border-radius: 10px;
  display: flex;
  background-color: var(--großeKachel);
  align-items: center;
  text-decoration: none;
}
#UserElementeNav {
  margin-top: auto;
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--Umrandung);
  border-radius: 10px;
  background-color: var(--großeKachel);
  text-decoration: none;
  width: 100%;
  padding: 0px 10px;
}
#setTime:hover,
#setStyle:hover {
  background-color: var(--kleineKachelHover);
}
#setPage {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 Spalten */
  gap: 10px; /* Abstand zwischen den Elementen */
  padding: 20px;
  border: 1px solid var(--Umrandung);
  border-radius: 10px;
  background-color: var(--großeKachel);
  text-decoration: none;
  width: 100%;
}
.LoginContainer {
  margin-bottom: 20px;
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 1px solid var(--Umrandung);
  border-radius: 10px;
}
.LoginInput {
  width: 50%;
  margin: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  border: 0px solid var(--Umrandung);
  border-radius: 10px;
  background-color: var(--kleineKachel);
  color: var(--Schriftfarbe);
}
::placeholder {
  color: var(--Schriftfarbe);
}
.LoginButton {
  flex: 1;
  margin: 5px;
  padding: 10px;
  background-color: var(--kleineKachel);
  border: 0px solid var(--Umrandung);
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  font-size: var(--SchriftKlein);
  user-select: none;
  /* NEU: Entfernt Unterstreichung und setzt Textfarbe */
  text-decoration: none;
  color: var(--Schriftfarbe);
  display: flex; /* Stellt sicher, dass flex-Eigenschaften angewendet werden */
  align-items: center; /* Zentriert den Text vertikal */
  justify-content: center; /* Zentriert den Text horizontal */
}

.LoginButton:hover {
  background-color: var(--kleineKachelHover);
  color: var(--Schriftfarbe);
}
.LoginHolder {
  height: 50px;
  width: 100%;
  display: flex;
}
.LoginStatus {
  height: 50px;
  width: 100%;
  display: none;
}
#removeStuffWrapper {
  width: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
}
#SettingWrapper {
  display: flex;
  flex-direction: column;
  margin: 10px 0px;
  padding: 20px;
  border: 1px solid var(--Umrandung);
  border-radius: 10px;
  background-color: var(--großeKachel);
  text-decoration: none;
  width: 100%;
}
.Button {
  width: 100%;
  margin: 5px;
  padding: 10px;
  background-color: var(--kleineKachel);
  border: 0px solid var(--Umrandung);
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  font-size: var(--SchriftKlein);
  user-select: none;
  text-decoration: none;
  color: var(--Schriftfarbe);
  display: flex;
  align-items: center;
  justify-content: center;
}
