input[type="range"] {
  width: 100%;
  margin-bottom: 10px;
}
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
li {
  margin-bottom: 5px;
}

.pane {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  /* height: 100%; */
  background-color: #3f3f3f;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 10px;
  box-sizing: border-box;
  overflow-y: auto; /* Allow scrollbar for pane */
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: black;
  margin: 0;
  height: 100vh; /* Fix body height to viewport height */
  overflow: hidden; /* Prevent scrolling on body */
}

.hidden {
  display: none;
}

#toggleCheckboxesButton {
  margin: 10px 0;
}

#checkboxContainer {
  max-height: 350px; /* Adjust this value as needed */
  overflow-y: auto;
  border: 1px solid #000;
  padding: 4px;
}

#genresList {
  list-style-type: none; /* Optional: remove bullet points from list */
  padding: 0;
  margin: 0;
}

#myanimelistUsernameInput {
  margin-top: 10px;
}

.scrollable {
  overflow-y: auto;
  max-height: 300px;
}

.buttons {
  margin-bottom: 10px;
}