/* Navigation and header styles */
#homeButtonContainer {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
}
#homeButton {
  background-color: #f2b705;
  color: #000;
  padding: 10px 15px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
#homeButton:hover {
  background-color: #ffe066;
}
#benutzerInfo {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #444;
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}
#benutzerInfo button {
  background-color: #f2b705;
  border: none;
  padding: 6px 10px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}
#benutzerInfo button:hover {
  background-color: #ffe066;
}
#benutzerInfo button#editProfileBtn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}
#benutzerInfo button#editProfileBtn:hover {
  opacity: 0.7;
}
header {
  background-color: #444;
  color: white;
  padding: 20px 0;
  text-align: center;
}
header h1 {
  margin: 0;
  font-size: 28px;
}
nav {
  display: flex;
  justify-content: center;
  background-color: #f2b705;
  flex-wrap: wrap;
}
nav a {
  color: #000;
  padding: 15px 25px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}
nav a:hover {
  background-color: #ffe066;
}