/* Style the modal background overlay */
.modal {
    display: none; /* Hidden by default */
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.5); /* Black with opacity */
  }
  
  /* Style the modal content box */
  .modal-content {
    background-color: #fff;
    margin: 10% auto; /* 10% from top and centered */
    padding: 20px;
    border-radius: 5px;
    width: 80%; /* Adjust width as needed */
    height: 70%; /* Optional: set a height for the iframe container */
    position: relative;
    display: flex;
    flex-direction: column;
  }
  
  /* Close button style */
  .close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .close:hover {
    color: #000;
  }
  
  /* Style iframe to fill modal content */
  iframe {
    flex: 1; /* take the remaining space */
    width: 100%;
    border: none;
    border-radius: 4px;
  }

#openModalBtn{
  padding:5px;
  border:0px;
}

#openModalBtn:hover{
  color:green;
}