#rotateButton {
  position: absolute;
  bottom: 2vh;
  left: 50%;
  transform: translateX(-50%);
  padding: 1vh 2vh;
  border: none;
  border-radius: 0.8vw;
  background: #4CAF50;
  color: white;
  font-size: 1.6vw;
  cursor: pointer;
  display: none;
}

#sidebar-catolog {
  position: absolute;
  top: 250px;
  left: 80px;
  width: 150px;
  height: 350px;
  padding: 35px 25px 0 25px;
  background-image: url('./assets/UI/FurnitureKatalog_ui.png');
  background-size: contain;
  background-repeat: no-repeat;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  align-content: start;
  
  pointer-events: none;
}

.sidebar-item {
  width: 100%;
  height: 7vh;
  cursor: pointer;
  
  pointer-events:all;
}

#sidebar-container {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  width: 12vw;
  height: auto;
}

#endButton {
  position: absolute;
  bottom: 5vh;
  right: 10vw;
  transform: translateX(-50%);
  width: 6vw;
  height: 6vh;
  padding: 1vh 2vh;
  border: none;
  border-radius: 0.5vw;

  background: transparent; 
  background-image: url("./assets/Correct.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}