
  /* CSS for the modal box */
  #modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }

  /* Modal content */
  .modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 300px;
  }

  /* Close button */
  .close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }

  .close-button:hover,
  .close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  #open-modal-button{
    margin: auto;
    padding: 16px;
    width: 150px;
    background: #777;
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    font-family: arial;
    border: none;
    border-radius: 15px;
  }
  
.modal-head{
    grid-column: 1/3;
    display: flex;
    align-items: center;
}
.modal-head .name{
    margin-left: 13px;
    font-size: 15px;
    font-weight: bold;
}
.modal-head .time{
    margin-left: 10px;
    font-size: 15px;
    color: #777;
}

.modal-comments{
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto auto auto;
    margin: 0 auto;
    width: 100%;
    max-width: 700px;
    padding: 35 25px;
    padding-bottom: 20;
    margin-bottom: 30px;
    background-color: var(--white);
    border-radius: 10px;
    color: var(--gray-blue);
}
.save-btn{
  width: 150px;
  margin: auto;
  border: 2px solid #777;
  background: transparent;
  border-radius: 15px;
  text-align: center;
  padding: 8px;
  font-size: 13px;
  font-weight: bold;
  color: #777;
  font-family: poppins, impact, arial, "arial black";
}

.save-btn::hover{
  width: 150px;
  margin: auto;
  border: 2px solid #777;
  background: #777;
  border-radius: 15px;
  text-align: center;
  padding: 4px;
  font-size: 13px;
  font-weight: bold;
  color: #777;
  font-family: poppins, impact, arial, "arial black";
}
.save-link{
  color: #777;
  text-decoration: none;
}