 
  .example-list-item {
    padding-left: 25px;
    padding-right: 30px;
  }

  #workout-item-list h5:hover {
    cursor: pointer;
  }
  
  /* Style the list items */
  #workout-item-list li {
    cursor: pointer;
    position: relative;
    padding: 12px 8px 12px 40px;
    list-style-type: none;
    font-size: 18px;
    transition: 0.2s;
    /* make the list items unselectable */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }  
  
  /* Darker background-color on hover */
  #workout-item-list li:hover {
    background: #f1f2f2;
  }

  /* Style the close button */
  .workout-item-close {
    position: absolute;
    right: 0;
    top: 0;
    padding: 12px 16px 12px 16px;
    margin-top: 10px;
  }

  .workout-item-close:hover {
    cursor: pointer;
  }
  
  /* When clicked on, add a background color and strike out text */
  #workout-item-list li.checked {
    background: #bcbec0;
    color: #fff;
    text-decoration: line-through;
  }
  
  /* Add a "checked" mark when clicked on */
  #workout-item-list li.checked::before {
    content: '';
    position: absolute;
    border-color: #fff;
    border-style: solid;
    border-width: 0 2px 2px 0;
    top: 10px;
    left: 16px;
    transform: rotate(45deg);
    height: 15px;
    width: 7px;
    margin-top: 15px;
  }
  
  /* Style the header */
  .add-exercise {
    background-color: #a7a9ac;
  }
  
  /* Style the input */
  .add-exercise-textbox {
    margin: 0;
    border: none;
    border-radius: 0;
    width: 75%;
    padding: 10px;
    float: left;
    font-size: 16px;
  }
  
  /* Style the "Add" button */
  .addBtn {
    /* width: 10%; */
    /* background: #6d6e71; */
    float: right;
    /* text-align: center; */
    /* font-size: 20px; */
    cursor: pointer;
    transition: 0.3s;
  }
  
  .addBtn:hover {
    background-color: #f26522;
    border-color: #f26522;
  }

  ::placeholder {
    color: white;
  }

  /* input[type=text], */
  #exercise-to-add {
    color: white;
    outline: none;
    background-color: #a7a9ac;
    font-size: 18px;
  }