/* Element styling */
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1;
  background-color: #eeeeee;
}

textarea{
  background: transparent;
  border: none;
  resize: none;
  color: #000000;
  padding: 10px;
  width: 100%; 
  max-width: 100%;
}
/* End of element styling */

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

.container {
  background-color: rgba(50, 143, 47, 0.1); 
  border-radius: 15px;
  margin-bottom: 30px;
}

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

.time-block {
  text-align: center;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  background-color: rgba(50, 143, 47, 0.2);
  border-right: 1px solid white;
}

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

.hour {
  background-color: #ffffff;
  color: #000000;
  border-top: 1px dashed #000000;
}
/* End of content styling */

/* Dynamic styling - script.js will apply these styles based on current time */
.past {
  background-color: rgba(255,0,0,0.1);
  color: white;
}

.past:hover {
  background-color: rgba(255,0,0,0.2);
}

.present {
  background-color: rgba(0, 255, 255, 0.1);
  color: white;
}

.present:hover {
  background-color: rgba(0, 255, 255, 0.25);
}

.future {
  background-color: rgba(228, 34, 196, 0.1);
  color: white;
}

.future:hover {
  background-color: rgba(228, 34, 196, 0.2);
}
/* End of dynamic styling */

/* Save button styling */
.saveBtn {
  border-left: 1px solid white;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  background-color: rgba(109, 60, 201, 0.2);
  color: white;
}

.saveBtn i:hover {
  font-size: 20px;
  transition: all .3s ease-in-out;
}
/* End of save button styling */