body {
  background-color: rgb(25, 25, 25);
  font-family: Arial, sans-serif;
  max-height: 600px;
}

.main-box {
  width: 80%;
  height: 70vh;
  /* min-height: 450px;
  max-height: 500px; */
  min-width: 320px;
  margin: 0 auto;
  /* background-color: rgb(32, 33, 35); */
  background-color: rgb(52, 53, 64);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: auto;
}

.child {
  width: 100%;
  margin-bottom: 2px;
  border-radius: 5px;
  flex-grow: 1;
  flex-shrink: 0;
  display: flex; 
  flex-direction: column; 
}

#innerbox {
  position: relative;
  /* height: auto; */
  height: 90%;
  /* min-height: 450px; */
  width: 95%;
  min-width: 300px;
  display: flex;
  align-items: center; 
  padding: 5px;
  color: rgb(210, 213, 218);
  /* top: 0; */
  margin-top: 5px;
  margin-bottom: 5px;
  /* background-color: rgb(52, 53, 64); */
  background-color: rgb(32, 33, 35);
  border-radius: 5px;
  flex-direction: column;
  flex-grow: 1; 
  overflow: auto; 
}

#innerbox .h5-container {
  margin-top: 20px;
}

#innerbox .h5-container > h5 {
  text-align: left;
  margin: 0;
}

.title {
  color: rgb(210, 213, 218);
  font-family: Arial, sans-serif;
  text-decoration: underline;
  text-decoration-color: blue; 
}

nav {
  width: 50px;
  float: left;
  background-color: rgb(25, 25, 25);
}

.menu-toggle {
  cursor: pointer;
  padding: 10px;
}

.hamburger {
  width: 30px;
  height: 2px;
  color: rgb(32, 33, 35);
  background-color: rgb(210, 213, 218);
  margin-bottom: 6px;
}

.menu-container {
  position: relative;
}

.menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; 
  list-style-type: none;
  margin: 0;
  padding: 0;
  z-index: 1;
  font-family: Arial, sans-serif;
}

.menu.show {
  display: block;
}

.menu li {
  margin-bottom: 10px;
}

.menu a {
  text-decoration: none;
  color: rgb(210, 213, 218);;
}

.form-element {
  padding: 5px; 
  margin-bottom: 10px;
}

ul {
  list-style: none;
  padding: 100;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
}

.two-column-list {
  columns: 2;
  height: 150px;
  width: 250px;
  justify-content: center;
}

.two-column-list li {
  break-inside: avoid;
  color: rgb(210, 213, 218);
  font-family: Arial, sans-serif;
}

.two-column-list2 {
  columns: 2;
  column-gap: 10px;
  list-style-type: none;
  padding: 0;
}

.two-column-list2 li {
  break-inside: avoid-column;
  color: rgb(210, 213, 218);
  font-family: Arial, sans-serif;
}

.q_yesterday {
  margin-left: 5px;
  margin-bottom: 5px;
  background-color: rgb(52, 53, 64);
  border-radius: 5px;
  border: 1px solid rgb(25, 25, 25);
  padding: 5px;
}

.a_yesterday {
  margin-left: 5px;
  margin-bottom: 5px;
  background-color: rgb(68, 70, 83);
  border-radius: 5px;
  border: 1px solid rgb(25, 25, 25);
  padding: 5px;
}

#first:before{
  content: "1. ";
  margin-right: 2px;
}

#first_score:after{
  content: "%";
  margin-left: 3px;
}

#second:before{
  content: "2. ";
  margin-right: 2px;
}

#second_score:after{
  content: "%";
  margin-left: 3px;
}

#third:before{
  content: "3. ";
  margin-right: 2px;
}

#third_score:after{
  content: "%";
  margin-left: 3px;
}

#fourth:before{
  content: "4. ";
  margin-right: 2px;
}

#fourth_score:after{
  content: "%";
  margin-left: 3px;
}

#fifth:before{
  content: "5. ";
  margin-right: 2px;
}

#fifth_score:after{
  content: "%";
  margin-left: 3px;
}