/* FM Doctor – AI enquiry overlay */

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.overlay[aria-hidden="false"] {
  display: block;
}

.overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
}

.overlay-panel {
  position: relative;
  width: min(980px, 94vw);
  height: min(86vh, 860px);
  margin: 6vh auto 0;
  background: #0b1020;
  border: 1px solid rgba(31, 41, 55, 0.9);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.55);
}

.overlay-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  cursor: pointer;
  line-height: 1;
  font-size: 18px;
}

#enquiryFrame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}