
.home-page-container{
  height: 100vh;
  max-height: 100vh;
  width: 100vw;
  gap: 3.62vw;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.home-container{
display: inline-flex;
width: 100vw;
height: 80vh;

flex-direction: column;
justify-content: space-between;

align-items: center;
flex: 1;
}
.home-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.12vw;

}
.button-group{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 1.52vw;
}
.sidebar-content .button-group{
  gap: 0.90vw;
} 
.button-group div{
  display: flex;
  justify-content: center;
  align-items: center;
}
.welcome-message{
  font-family: 'Tektur', sans-serif;
  font-size: 1.88vw;
  font-weight: 400;
  color: var(--Weiß, #F2F5FF);
}
.logo {
  width: 50vw;
  height: auto;
}

@media screen and (min-width: 3440px) {
  .welcome-message {
    font-size: 1vw; /* Kleinere Schrift für Wide-Screens */
  }
  .logo {
    width: 50vw; /* Kleinere Logo-Breite */
  }
  .home-page-container {
    gap: 2vw; /* Kleinere Lücken */
  }
  .home-content {
    gap: 2vw;
  }
  .button-group {
    gap: 2vw;
  }

}
.acc-container{
  padding-left: 1.04vw;
  padding-top: 1.04vw;
}
#logoutsvg{
 flex-shrink: 0;
}
#acc-button{
  /*style*/
background: var(--Button-Button_blau, #496BFF);
color: var(--Button-Button_white, #F2F5FF);
text-decoration: none;
overflow:hidden;

border-radius: 0.94vw;
  display: flex;
width: 2.76vw;
height: 2.76vw;
padding: 0.31vw 0.31vw 0 0.31vw ;
flex-direction: column;
justify-content: center;
align-items: center;
/* small butten */
border: none;
box-shadow: 0 0.1vw 0.21vw 0 rgba(255, 255, 255, 0.25) inset, -0.1vw -0.1vw 0.54vw 0.05vw rgba(10, 2, 52, 0.48) inset, 0 0.1vw 0.21vw 0 rgba(10, 2, 52, 0.43);
}
#acc-button:active{
  /* Button-clicked */
box-shadow: 0 -0.21vw 0.21vw 0 rgba(255, 255, 255, 0.25) inset, 0.31vw 0.26vw 0.54vw 0.05vw rgba(10, 2, 52, 0.48) inset;
}
#acc-button:hover{
  width: 2.97vw;
  height: 2.97vw;
  padding: 0.42vw 0.42vw 0 0.42vw ;
}
.logout-container form{
  display: flex;
  align-items:flex-start;
}

/* Sidebar Styles */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 20vw;
  height: 100%;
  background-color:#496BFF;
  color: white;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  padding: 2vw;
  box-sizing: border-box;
}

.sidebar.open {
  transform: translateX(0);
}

.close-btn {
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: white;
  font-size: 2vw;
  cursor: pointer;
}

.sidebar-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-top: 2.0vh 1.0vw;
  justify-content: space-between;
}
.sidebar-top{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#sidebarüberschrift{
  font-size: 1.5vw;
}
