body{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
  text-align: center;
}

td, th {
  border: 1px solid #000000;
  text-align: left;
  padding: 8px;
  text-align: center;
}

#controlFormOuter{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#navBar{
  width: 650px;
  height: 35px;
  background: rgb(255,217,45);
background: linear-gradient(104deg, rgba(255,217,45,1) 0%, rgb(255, 252, 69) 40%, rgba(239,158,16,1) 70%, rgba(255,223,41,1) 89%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: right;
  padding-right: 10px;
  line-height: 35px;
  font-family: Verdana;
  margin-bottom: 20px;
}

#logo img{
  height: 45px;
}

#logo{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  right: 100px;
}

#logo h3{
  font-size: 1.4em;
  font-weight: 500;
}

#navBar a{
  text-align: center;
  vertical-align: center;
  display: inline-block;
  line-height: normal;
  border-left: 1px solid rgba(0, 0, 0, 0.09);
  border-right: 1px solid rgba(0, 0, 0, 0.09);
  padding: 8px;
  color: white;
  text-decoration: none;
  transition: 0.2s;
}

#navBar a:hover{
  background-color: hsl(38, 100%, 56%);
  border-left: 1px solid hsl(38, 100%, 56%);
  border-right: 1px solid hsl(38, 100%, 56%);
}

#navBar .clickedA{
  background-color: hsl(38, 100%, 56%);
  border-left: 1px solid hsl(38, 100%, 56%);
  border-right: 1px solid hsl(38, 100%, 56%);
}

.noteDiv{
  width: 400px;
  text-align: justify;
  font-family: Arial;
  font-size: 12px;
  padding: 15px;
  background-color: hsl(49, 100%, 77%);
  border: 1px solid hsl(52, 100%, 50%);
  display: flex;
  flex-direction: column;
}

.note{
  width: 250px;
  text-align: justify;
  font-family: Arial;
  font-size: 12px;
  padding: 15px;
  background-color: hsl(49, 100%, 77%);
  border: 1px solid hsl(52, 100%, 50%);
}

.centerStrong{
  align-self: center;
  font-size: 1.5em;
  margin-bottom: 20px;
}

#helpX{
  margin-right: 100px;
  width: 10px;
  padding-right: 12px;
  border: none;
  background-color: hsl(38, 87%, 50%);
  color: red;
  position: relative;
  bottom: 10px;
  left: 142px;
}

.button{
  border: none;
  background-color: hsl(38, 87%, 50%);
  color: white;
  padding: 3px 10px 3px 10px;
  margin: 5px;
  width: 150px;
}


#onOffBtn button{
  width: max-content;
  margin-top: 0px;
  margin-bottom: 0px;
}

#form{
  display: flex;
  flex-direction: column;
  width: 200px;
  align-items: center;
  justify-content: center;
  border: 2px hsl(51, 100%, 58%) solid;
  padding: 10px;
  height: 200px;
  border-radius: 5px;
}

#onOffBtn{
  display: flex;
  flex-direction: row;
  margin-top: 0px;
  margin-bottom: 0px;
}

input{
  /*border: none;*/
  background-color: hsl(47, 100%, 89%);
  color: black;
  outline: none;
  padding: 5px;
  width: 140px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

button:hover{
  cursor: pointer;
  background-color: hsl(38, 100%, 56%);
}

#helpNote{
  opacity: 0;
  transition: 0.2s;
}

#help{
  height: 20px;
  margin-left: 10px;
  /*position: relative;*/
  /*top: 20px;*/
  /*left: 90px;*/
}

#helpBtn{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

label{
  color: black;
  padding: 5px;
  background-color: white;
  text-align: center;
}

#layout{
  width: 400px;
  text-align: center;
  opacity: 0;
  transition: 0.2s;
}

#layoutBtn{
  width: 100px;
  margin-left: 0px;
}

#showDevDocs{
  color: blue;
  font-weight: bold;
}

#showDevDocs:hover{
  cursor: pointer;
}

#devHelp{
  position: fixed;
  bottom: 25px;
  right: 40px;
  width: 150px;
  opacity: 0;
  transition: 0.2s;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

@keyframes appear {
  from{
    opacity: 0;
  }
  to{
    opacity: 1;
  }
}