.mitingu-widget--modal {
  display: none;
  position: fixed; /* Stay in place */
  z-index: 50; /* Sit on top */
  left: 0;
  top: 0;

  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  justify-content: center;
  align-items: center;
}

.mitingu-widget--modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  border-radius: 10px;
  box-shadow: 2px 1px 1px gray;
  width: 80%; /* Could be more or less, depending on screen size */
  max-width: 600px; /* Optional: for very large screens */
  height: 80%; /* Responsive height */
  max-height: 800px; /* Optional: for very large screens */
  overflow-y: auto;
  position: relative;
}

#mitingu-widget--modal-loading-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.1); /* Black w/ opacity */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10; /* Ensure it's above the iframe */
}
.mitingu-widget--close {
  color: #aaa;
  position: absolute;
  z-index: 90;
  top: 15px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
}

.mitingu-widget--close:hover,
.mitingu-widget--close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#mitingu-widget--iframe {
    width: 95%;
    height: 95%;
    margin:auto;
    border: none; /* Optional: removes the border */
}
