html {
  height: 100%;
}

head {
  border: 1px solid black; 
}

body {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  min-height: 99%;
  font-family: georgia;
  font-size: 2vh;
  margin-top: 0px;
}

h1 {
  text-align: center;
  font-size: 2vh;
}


p {
   color: #ff0000;
 }
 
/*
table, th, td {
  border: 1px solid black;
}
*/

.maintable {
  width: 100%;
  padding: 0px 0px 0px 0px;
}


.form_display {
  background-color: #fff2e6;
  border-style: none none dotted none;
  width: 98%;
  height: 3vh;
}

.comment {
  background-color: #fff2e6;
  border-style: none none dotted none;
  width: 98%; 
}

.col_1 {
  width: 2%;
}

.col_2 {
  width: 12%;
}

.col_3 {
  width: 35%;
}

.printbutton {
  background-color: #ffff00;
  color: #000000;
  padding: 14px 25px;
  font-size: 2vh;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  width: 300px;
  border-radius: 8px;
}

.emailbutton {
  background-color: #beffff;
  color: #000000;
  padding: 14px 25px;
  font-size: 2vh;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  width: 300px;
  border-radius: 8px;
}


@media print {
  .printbutton {
    visibility: hidden;
  }
}

@media print {
  .emailbutton {
    visibility: hidden;
  }
}


