/* Modal overlay */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* Modal window */
.modal-content {
  position: relative;
  width: 90%;
  max-width: 700px;
  height: 85vh;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

/* Iframe */
.modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Close button */
.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.btn-inline {
  padding: 6px 16px;
  font-size: 0.9rem;
  margin-right: 6px;
}
