button.myButton {
   padding: 16px 32px;
   text-align: center;
   text-decoration: none;
   display: inline-block;
   transition-duration: 0.4s;
   font-size: 16px;
   margin: 4px 2px;
   cursor: pointer;
   background-color: white;
   color: black;
   border: 2px solid #04AA6D;}
button.myButton:hover {
   background-color: #04AA6D;
   color: white;}
.red_div {
   color: red;
   font-weight: 700;}
input[type="text"] {
  width: 40px;        /* Sets horizontal length */
  height: 20px;        /* Sets vertical height */
  padding: 4px;        /* Inner spacing for readable text */
  box-sizing: border-box; /* Includes padding in overall width/height */
}