/* Basic overlay styling consistent with search overlay look */
.slh-no-scroll {
  overflow: hidden !important;
}

#feedback-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: none;
}

#feedback-overlay.is-open {
  display: block;
}

.slh-feedback-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.slh-feedback-dialog {
  position: relative;
  z-index: 1;
  width: min(800px, 96vw);
  max-height: 90vh;
  margin: 5vh auto 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.slh-feedback-header {
  background: #0d6efd; /* Bootstrap primary */
  color: #fff;
  padding: 0.75rem 1rem;
}

.slh-feedback-body {
  padding: 1rem;
  background: #f8f9fa;
}

.slh-feedback-frame {
  width: 100%;
  height: 65vh;
  border: 0;
  background: #fff;
}

.slh-feedback-close {
  color: #fff;
}
