.main {
  position: relative;
  display: flex;
  direction: ltr;
  flex-wrap: nowrap;
  min-height: 100%;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-light);
  border: 5px solid var(--bg-dark);
  box-sizing: border-box;
}
#sidebar {
  width: var(--sidebar-width);
  height: 100vh;
  position: fixed;
  top: 0;
  left: calc(-1 * var(--sidebar-width)); /* Hidden initially */
  background-color: var(--bg-dark);
  transition: left 0.3s ease-in-out;
  z-index: 1;
  overflow-y: auto;
  box-sizing: border-box;
}

#sidebar.show {
  left: 0; /* Shown on button click */
}

#sidebarToggle {
  padding: 4px 12px;
}
label {
  font-size: 100%;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
}
.hallElement {
  font-size: 300%;
  font-weight: bold;
  text-align: center;
  color: white;
  border-bottom: 5px solid var(--bg-dark);
}
.hallElementHeader {
  font-size: 300%;
  font-weight: bold;
  text-align: center;
  color: white;
  border-bottom: 5px solid var(--bg-dark);
}
.inputElement {
  display: flex;
  justify-content: space-evenly;
  align-items: start;
  margin: 20px 50px;
  background-color: white;
  padding: 10px 0px;
  border: 3px solid var(--bg-dark);
  border-radius: 5px;
}
.groupLabel {
  width: 50%;
  font-size: 150%;
  color: black;
}
.groupInput {
  font-size: 150%;
  width: auto;
  text-align: center;
}
#submitElements {
  padding-top: 25px;
  text-align: center;
  width: 100%;
  border-top: 5px solid var(--bg-dark);
}
#submitElementsBtn {
  width: 80%;
  font-size: 150%;
  padding: 15px;
  display: none;
}
.toggleStateBtn {
  font-size: 150%;
  padding: 15px;
}
.toggleStateContainer {
  display: none !important;
}
.main {
  justify-content: center;
  align-items: flex-start;
}
#mainContent {
  width: 100%;
  padding-top: 50px;
}
.headerBtns {
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  height: 128px;
  text-align: center;
  padding: 15px 25px;
  border-bottom: 3px solid var(--bg-light);
}
.inputPages hr {
  width: 100%;
  background-color: var(--bg-light);
  height: 2px;
}
.up-arrow {
  font-size: 170%;
  padding: 10px 5px 0px;
}
.down-arrow {
  font-size: 170%;
  padding: 0px 5px 10px;
}
input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.number-input {
  /* border: 2px solid #ddd; */
  border: 3px solid var(--bg-dark);
  display: inline-flex;
}

.number-input,
.number-input * {
  box-sizing: border-box;
}

.number-input button {
  outline: none;
  /* -webkit-appearance: none; */
  background-color: transparent;
  border: none;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  margin: 0;
  position: relative;
}

.number-input button:after {
  /* display: inline-block;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f077"; */
  transform: translate(-50%, -50%) rotate(180deg);
}
.number-input button.plus:after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.number-input input[type="number"] {
  font-family: sans-serif;
  /* max-width: 5rem; */
  max-width: 6rem;
  padding: 0.5rem;
  border: solid #ddd;
  border-width: 0 2px;
  font-size: 200%;
  height: 3rem;
  font-weight: bold;
  text-align: center;
}
