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

  .jumbotron {
    text-align: center;
    background-color: rgb(88, 88, 88);
    color: white;
    border-radius: 0;
    border-bottom: 10px solid black;
  }
  
  textarea {
    background: transparent;
    border: none;
    resize: none;
    color: #000000;
    border-left: 1px solid black;
    padding: 10px;
  }
  
  .description {
    white-space: pre-wrap;
  }
  
  .time-block {
    border-radius: 15px;
  }
  
  .row {
    border-top: 1px solid rgb(39, 39, 39);
  }
  
  .hour {
    background-color: #838282;
    color: #000000;
    border-top: 1px dashed #000000;
  }
  
  .past {
    background-color: rgb(122, 151, 137);
    color: white;
  }
  
  .present {
    background-color: #836c82;
    color: white;
  }
  
  .future {
    background-color: #4b746b;
    color: white;
  }
  
  .saveBtn {
    border-left: 1px solid black;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    background-color: #7cb981;
    color: rgb(37, 37, 37);
  }
  
  .saveBtn i:hover {
    font-size: 20px;
    transition: all 0.3s ease-in-out;
  }
  