body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  background-color: #EDF2F4;
  color: #000000;
}

::selection {background: #EF233C; color: #ffffff;}

body::-webkit-scrollbar {
  width: 0.5em;
  background-color: transparent;
}

body::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: #ef233c;
}

body.sidebar-open {
  overflow: hidden;
}

.content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px;
}

.impressum {
  background-color: #EDF2F4;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 90%;
  text-align: center;
  margin-top: 10%;
}

.datenschutz {
  background-color: #EDF2F4;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  width: 90%;
  text-align: center;
}

a {
  text-decoration: none;
  color: #000000;
}

a:hover {
  text-decoration: underline;
}

.dark-mode-toggle {
  position: fixed;
  bottom: 3%;
  left: 2%;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  transition: background-color 0.5s, transform 0.3s, width 0.2s, height 0.2s;
  z-index: 10;
}

.dark-mode-toggle:hover {
  background-color: rgba(0, 0, 0, 0.7);
  transform: scale(1.04);
  width: 55px;
  height: 55px;
}

.fas.fa-moon {
  color: #FFD700;
  background-color: transparent;
  font-size: 24px;
  border-radius: 50%;
}

.fas.fa-sun {
  display: none;
}

.button-container {
  position: fixed;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.button {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  transition: background-color 0.5s, transform 0.3s, width 0.2s, height 0.2s;
  z-index: 10;
}

.button:hover {
  background-color: rgba(0, 0, 0, 0.7);
  transform: scale(1.04);
  width: 55px;
  height: 55px;
  text-decoration: none;
  overflow: hidden;
}

.button .icon {
  color: #ffffff;
  background-color: transparent;
  font-size: 24px;
  border-radius: 50%;
}

.button .fa-lock {
  color: #ffffff;
}

.button .fa-info {
  color: #ffffff;
}

.button .fa-right-to-bracket {
  color: #ffffff;
}
