/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background: rgba(0, 0, 0, 0.8);
    font-display: flex;
    justify-content: center;
   /* background-color: rgb(0,0,0); /* Fallback color */
   /* background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content */
  .modal-content {
    background-color: #fefefe;
    margin: auto;
    z-index: 1; /* Sit on top */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-height: 300px;
    overflow: auto;
  }
  
  .modal-message {
    flex-basis: 100%;
    text-align: center;
    margin: 20px 0;
    color: #0099DF;
  }

  

  /* The Close Button */
  .close {
    display: inline-block;
    background: #aaaaaa;
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin-right: 20px;
    line-height: 1.5;
    width: 130px;
    text-align: center;
    border-radius: 15px;
  }

  .ok {
    display: inline-block;
    background: #0099DF;
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin-right: 20px;
    line-height: 1.5;
    width: 130px;
    text-align: center;
    border-radius: 15px;
  }
  
  .close:hover,
  .close:focus {
    background: #000;
    color: white;
    text-decoration: none;
    cursor: pointer;
  }
  
  .ok:hover,
  .ok:focus {
    background: rgb(1, 77, 112);
    color: white;
    text-decoration: none;
    cursor: pointer;
  }