body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1;
}

textarea{
  background: transparent;
  border: none;
  resize: none;
  color: #000000;
  border-left: 1px solid black;
  padding: 10px;
  width: 920px;
}

.jumbotron {
  text-align: center;
  background-color: rgb(109, 147, 148);
  color: black;
  border-radius: 0;
  border-bottom: 10px solid black;
}

.description{
  white-space: pre-wrap;
}

.time-block{
  text-align: center;
  border-radius: 15px;
}

.input-group-text {
  border: none;
}

.form-control {
  border: none;
}

.row {
  white-space: pre-wrap;
  height: 80px;
  border-top: 1px solid white;;
}

.hour {
  background-color: #ffffff;
  color: #000000;
  border-top: 1px dashed #000000;
  width: 100px;
  text-align: center;
  padding: 20px;
}

.past {
  background-color: #d3d3d3;
  color: rgb(254, 2, 2);
}

.present {
  background-color: #f72419;
  color: rgb(0, 0, 0);
}

.future {
  background-color: #77dd77;
  color: white;
}

.saveBtn {
  font-family: Roboto, sans-serif;
  font-weight: 0;
  font-size: 14px;
  color: #fff;
  background-color: #0066CC;
  padding: 10px 30px;
  border: 2px solid #0066cc;
  box-shadow: rgb(0, 0, 0) 0px 0px 0px 0px;
  /* border-radius: px; */
  transition: 1000ms;
  transform: translateY(0);
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
}

.saveBtn:hover {
  transition: 1000ms;
  padding: 10px 50px;
  transform: translateY(-0px);
  background-color: #fff;
  color: #0066cc;
  border: solid 2px #0066cc;
}

.footer{
  text-align: center;
  background-color: transparent;
  color: black;
  border-radius: 0;
  border-top: 10px solid black;
}









