.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/Box */
  .modal-content {
    background-color: #fefefe;
    margin: 30% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: max-content; /* Could be more or less, depending on screen size */
    max-width: 375px;
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 20px;
    justify-content: center;
    border-radius: 26px;
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 16px;
  
  }
  
  /* The Close Button */
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
  .modal button{
    background: #9E9CAA;
    border-radius: 26px;
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    box-shadow: none;
    border: none;
    padding: 4px 6px 4px 6px;
    margin: 0px 10px 0px 10px;
  }
  .modal button:hover{
    background: #8A33FF;
  }
  
  .modal-buttons{
    justify-content: space-between;
  }
  
  .modal-content p{
    margin-left: 20px;
    color: black;
  }
  
  p#modal-title{
    color: #8A33FF !important;
    font-size: large;
    margin-left: 0px;
  }
  .iconContent {
    height: 3.5vh;
    margin-bottom: 0.5vh;
  }