:root {

  --teal: #1c4646;

}

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

textarea {
  background: transparent;
  border: none;
  resize: none;
  color: #000000;
  border-left: 1px solid black;
  padding: 10px;
  height: 50px;
  margin-left: 50px;
  margin-right: 50px;
  /* color: #d3d3d3; */
}



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

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

.time-blocks {
  text-align: center;
  margin: 20px 30px;
}

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

.hour {
  background-color: #ffffff;
  color: #000000;
  border-top: 1px dashed #000000;
}

.past {
  background-color: #d3d3d3;
  color: white;
}

.present {
  background-color: #ff6961;
  color: white;
}

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


.save-button {
  border-left: 1px solid black;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  background-color: #06aed5;
  color: white;
  margin: 5px 30px;
}

.delete-button {
  border-left: 1px solid black;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  background-color: red;
  color: white;
  margin: 5px 30px;
}

.saveBtn i:hover {
  font-size: 20px;
  transition: all 0.3s ease-in-out;
}