
.division_layout {
  display: inline-grid;
  margin-top: 2rem;
  width: 100%;
}

/* Choose Mode Container Elements */
.inputs {
  width: 55px;
  height: 50px;
  border-radius: 15px;
  background-color: hsla(250, 100%, 85%, 0.77);
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  outline: none;
  color: #070707da;
  border: none;
  font-family: cursive;
  box-shadow: 2px 2px 0.5px hsla(0, 0%, 45%, 0.7);
  cursor: pointer;
}
.choosemode {
  display: grid;
  align-content: center;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  font-family: cursive;
}
.divisionmode {
  display: grid;
  font-size: 0.75rem;
  font-weight: bold;
  font-family: "Courier New", Courier, monospace;
  grid-row: 2;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 5rem;
  margin: 1rem 0;
  align-content: center;
}
.buttonmode {
  display: grid;
  align-content: center;
  justify-content: center;
  width: 145px;
  background-color: hsla(0, 0%, 100%, 0.7);
  height: fit-content;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  box-shadow: inset 0px 0px 7px grey;
  justify-items: center;
}
.activemode {
  background-color: hsla(0, 0%, 73%, 0.5);
  transform: scale(1.2);
  border: 1px solid rgb(10, 10, 10);
  font-size: bolder;
}
.btn1 {
  grid-row: 1;
  transition: 0.1s;
}
.btn1:hover,
.btn2:hover {
  transform: scale(1.1);
}
.btn2 {
  grid-row: 1;
  transition: 0.1s;
}
.trash_btn {
  width: 2rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}
.trash_btn:hover,
.trash_btn:active {
  transform: scale(1.1);
}
#labelam {
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Courier New", Courier, monospace;
}
#labeleu {
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Courier New", Courier, monospace;
}

/* Choose Mode Container Elements */

@media all and (max-width: 600px) {
  .inputs {
    width: 45px;
    height: 38px;
    font-size: 1.5rem;
  }
  .buttonmode {
    width: 100px;
  }
}
@media all and (max-width: 475px) {
  .inputs {
    width: 30.5px;
    height: 28px;
    font-size: 1.125rem;
  }
  .checkbox-input {
    width: 1rem;
    height: 1rem;
  }
}
@media all and (max-width: 375px) {
  .custom-box {
    padding: 10px;
  }
  .division_layout {
    overflow: scroll;
  }
}
