body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1;
  }
  
  textarea{
    background: transparent;
    border: none;
    resize: none;
    color: #000000;
    border-left: 1px solid black;
    padding: 10px;
  }
  
  .jumbotron {
    text-align: center;
    background-color: transparent;
    color: black;
    border-radius: 0;
    border-bottom: 10px solid black;
    padding-bottom: 40px;
  }

  .description{
    white-space: pre-wrap;
  }
  
  .time-block{
    text-align: center;
    border-radius: 15px;
    width: 65%;
    display: flex;
  }
  
  .row {
    white-space: pre-wrap;
    height: 80px;
    border-top: 1px solid white;;
    justify-content: center;
  }
  
  .hour {
    background-color: #ffffff;
    color: #000000;
    border-top: 1px dashed #000000;
    border-right: 1px solid black;
    min-width: 50px;
    max-height: 100%;
  }
  
  .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;
    min-width: 50px;
    max-height: 100%;
    line-height: 50px;
    text-align: center;
  }
  
  .saveBtn:hover {
    font-size: 20px;
    transition: all .3s ease-in-out;
    cursor: pointer;
  }
  
  #currentDay {
      margin-top: 30px;
      font-weight: 800;
      font-size: 30px;
  }

  .wrapped-input {
    width: 100%;
    height: 100%;
    text-align: center;
    border-radius: 15px;
  }

 