select, textarea, button, p, label {
  font-size: inherit;
  font-family: Roboto, sans-serif;
  padding: 5px; 
  margin: 5px;
}

.gridhead-container {
  display: grid;
  grid-template-columns: 120px 220px;
  grid-template-rows: 100px;
  background-color: #000F00;
  padding: 5px;
}

.gridhead-item {
  padding: 5px;
  font-size: 25px;
  text-align: left;
  align-self: end;
  color: #FFFFFF;
  flex-direction: column;
  font-family: Roboto, sans-serif;
}


.inputbutton {
  font-size: 1.2em; 
  padding: 6px 18px; 
  font-family: Roboto, sans-serif;
  font-weight: 300;
  border: 1px solid silver;
  /* color: darkslategrey; */
  /* background-image: linear-gradient(to top, gainsboro 0%, white 90%); */
  border-radius: 6px;
  margin: 0px 5px 0px 0px;
}

.ibgrey {
  background-image: linear-gradient(to top, gainsboro 0%, white 90%);
  color: darkslategrey;
  margin: 0px auto;
}

.ibred {
  /* button red foratted, gradient high color #A10000 0%, red 30% = #FF0000 --- background-image: linear-gradient(to top, #A48080 0%, #FFAAAA 30%);  */
  background-image: linear-gradient(to top, #A10000 0%, #FF0000 30%);  
  color: white;
  margin: 0px auto;
}

.ibgreen {
  /* button green foratted, gadient color: #0CA00C 0%, limegreen 30% = #32CD32 -- 
               light green: gadient color: #4CC84C 0%, limegreen 30% = #94EF94 */  
  background-image: linear-gradient(to top, #0CA00C 0%, #32CD32 30%);  
  color: white;
  margin: 0px auto;
}

.inputtext { 
  width: 100%; 
  min-width: 100%; 
  box-sizing: border-box;
  border: 1px solid silver;
  border-radius: 6px;
  background-image: linear-gradient(to top, #EEEEEE 00%, white 75%);
  outline: none;
  padding: 8px;
  margin: 5px 5px 5px 0px;
}

label {
  display: block; 
}


@-webkit-keyframes fadeInOut {0% {opacity: 0;} 16% {opacity: 1;} 84% {opacity: 1;} 100% {opacity: 0;}}
@keyframes fadeInOut {
  0% {opacity: 0; transform: translateY(-200%);} 
  10% {opacity: 1;transform: translateY(0%)} 
  90% {opacity: 1;transform: translateY(0%)} 
  100% {opacity: 0;transform: translateY(-200%)}
}

.isa_info, .isa_red, .isa_green, .isa_orange {
  margin:10px 0px;
  padding:12px;
  border-radius:.5em;
  position: absolute;
  right: 5%;
  top: 5%;
  font-family: Roboto, sans-serif;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 12px;
  opacity:0;
  -webkit-animation: fadeInOut 5.2s;
  animation: fadeInOut 5.2s;
}

.isa_info {color: #00529B;background-color: #BDE5F8;}
.isa_green {background-color: #00BA00;}
.isa_red {background-color: #FF3232;}
.isa_orange {background-color: #FFC745;}


