#hhp-manual-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 2147483647 !important;
  display: none;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

#hhp-modal-wrapper {
  position: relative;
  width: 98vw;
  height: 96vh;
  max-width: none;
  max-height: none;
  background: transparent;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

#hhp-form-embed {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

/* Force Typeform embed to fill the modal */
#hhp-form-embed > div,
#hhp-form-embed iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
}

#hhp-form-embed iframe {
  border: 0;
}

#hhp-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #fff;
  cursor: pointer;
  z-index: 2147483650;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
  padding: 0;
}

#hhp-close-btn:hover {
  background-color: #e15f30;
  border-color: #e15f30;
}

#hhp-close-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.5;
}
