@charset "UTF-8";
/* CSS Document */


/* Add your custom CSS styles here */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  position: relative;
  margin: 10% auto;
  width: 900px; /* Adjust to your desired width */
  height: 600px; /* Adjust to your desired height */
  background-color: white;
  border-radius: 5px;
  padding: 10px;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}

