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

/* Formats large header space above calendar */
.jumbotron {
  text-align: center;
  background-color: transparent;
  color: black;
  border-radius: 0;
  border-bottom: 10px solid black;
}

/* Formats description text within the top header */
.description {
  white-space: pre-wrap;
}

/* Formats each row of time */
.row {
  white-space: pre-wrap;
  height: 80px;
  border-top: 1px solid white;
}

/* Element containing entry field */
.card-body {
  background-color: lightgray;
  margin: 0;
  padding: 0;
  border-right: 1px solid black;
}

/* Formats previous times grey */
.past {
  background-color: #d3d3d3;
  color: white;
}

/* Formats current time red */
.present {
  background-color: #ff6961;
  color: white;
}

/* Formats future times green */
.future {
  background-color: #77dd77;
  color: white;
}

/* Save button formatting */
.saveBtn {
  border-left: 1px solid black;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  background-color: green;
  color: white;
  font-weight: bolder;
  text-decoration: underline;
  font-size: large;
}

/* Save button behaviour when moused over */
.saveBtn i:hover {
  font-size: 20px;
  transition: all 0.3s ease-in-out;
}

/* Card title which displays time associated with given row */
.title-card {
  width: 50%;
}

/* Main content area for each time row */
.card-title {
  border-right: 1px solid black;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  background-color: #06aed5;
  color: white;
  margin: 0;
  font-size: xx-large;
}