.level-buttons-container {
  position: fixed;
  right: 10px;
  top: 40%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 1000;
}

.level-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(50, 57, 71, 0.95);
  color: #ece5d8;
  border: 2px solid #8a6c47;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  padding: 0;
}

.level-btn.active {
  background: rgba(96, 77, 63, 0.9);
}

@media only screen and (max-height: 400px) {
  .level-buttons-container {
    top: 20%;
  }

  .level-btn {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }
}

@media only screen and (max-width: 900px) {
  .level-buttons-container {
    top: 20%;
  }

  .level-btn {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }
}