body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  margin-bottom: 30px;
}

#currentDay {
  margin-top: 30px;
  font-size: 50px;
}

#statementUnderMyDailyPlanner {
  margin-top: -5px;
  font-size: 20px;
}

#clearAll {
  font-size: 30px;
  border: 5px solid black;
  background-color: rgb(37, 200, 250);
  border-radius: 15px;
  color: black;
}

#clearAllDiv {
  margin-bottom:-15px;
}

header {
  text-align: center;
}

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

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

.container-fluid {
  margin-top: -35px;
}

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

.row {
  border-top: 1px solid white;
}

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

.hour {
  display: none;
}

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

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

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

.saveBtn {
  border-left: 1px solid black;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  background-color: #06aed5;
  color: white;
}

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