/*Changed the color to have a contrast with the rows.  */
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1;
  background-color: bisque;
}

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

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

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

.time-block {
  text-align: center;
  border-radius: 15px;
}
/* Changed the color and added some padding to the top for a more even look between the top row and the jumbotron. */
.row {
  white-space: pre-wrap;
  height: 80px;
  border-top: 1px solid white;
  padding-top: 20px ;
  background-color:  beige
  ;
}

.hours{
  background-color: #ffffff;
  color: #000000;
  border-top: 1px dashed #000000;
}
/* Below I changed font color to black since the white was harder to see. Also, made the font blod. */
.past {
  background-color: #d3d3d3;
  color: black;
  font-weight: bold;
}

.present {
  background-color: #ff6961;
  color:black;
  font-weight: bold;
}

.future {
  background-color: #77dd77;
  color: black;
  font-weight: bold;
}

.save-btn {
  border-left: 1px solid black;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  background-color: #06AED5;
  color: white;
  font-size: larger;
}

.save-btn:hover {
  font-size: 20px;
  transition: all .3s ease-in-out;
  background-color: crimson;
}

