
    /* Modal styles */
    .modal {
      display: none; /* Hidden by default */
      position: fixed; /* Stay in place */
      z-index: 1000; /* Sit on top */
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto; /* Enable scroll if needed */
      background-color: rgba(0,0,0,0.5); /* Black with opacity */
    }
  
    /* Modal Content/Box */
    .modal-content {
      background-color: #fefefe;
      margin: 15% auto; /* 15% from the top and centered */
      padding: 20px;
      border: 1px solid #888;

    border-radius: 8px;
      width: 80%; /* Could be more or less, depending on screen size */
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      position: relative;
    animation: transitionIn-Y-over 0.5s;
    }
  
    /* Close button */
    .close {
      color: #aaa;
      float: right;
      font-size: 25px;
      font-weight:bold;
    }
  
    .close:hover,
    .close:focus {
      color: black;
      text-decoration: none;
      cursor: pointer;
    }