.betaBanner {
  border: 1px solid #d8e4cf;
  background: #fff8ed;
  color: #102118;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  line-height: 1.45;
}

.betaBanner strong {
  color: #064f25;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.feedbackButton {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  border: 1px solid #086830;
  background: #086830;
  color: #fff;
  border-radius: 999px;
  padding: 11px 15px;
  font: inherit;
  font-weight: 760;
  box-shadow: 0 12px 30px rgba(8, 104, 48, .20);
  cursor: pointer;
}

.feedbackOverlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(16, 33, 24, .36);
  display: grid;
  place-items: center;
  padding: 18px;
}

.feedbackOverlay.hidden {
  display: none;
}

.feedbackDialog {
  width: min(520px, 100%);
  background: #fffef9;
  color: #102118;
  border: 1px solid #d8e4cf;
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(16, 33, 24, .22);
  padding: 18px;
  display: grid;
  gap: 12px;
}

.feedbackHeader {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.feedbackHeader h2,
.feedbackDialog p {
  margin: 0;
}

.feedbackHeader h2 {
  font-size: 20px;
  line-height: 1.15;
}

.feedbackClose {
  border: 1px solid #d8e4cf;
  background: #fff;
  color: #102118;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  padding: 0;
  cursor: pointer;
}

.feedbackForm {
  display: grid;
  gap: 10px;
}

.feedbackForm label {
  display: grid;
  gap: 6px;
  color: #5f6f62;
  font-size: 12px;
  font-weight: 700;
}

.feedbackForm input,
.feedbackForm textarea {
  width: 100%;
  border: 1px solid #d8e4cf;
  border-radius: 8px;
  padding: 10px 11px;
  color: #102118;
  background: #fff;
  font: inherit;
}

.feedbackForm textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

.feedbackActions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.feedbackActions button {
  border: 1px solid #f9a850;
  background: #f9a850;
  color: #102118;
  border-radius: 8px;
  padding: 10px 14px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.feedbackStatus {
  color: #5f6f62;
  font-size: 13px;
}

@media (max-width: 560px) {
  .betaBanner {
    align-items: start;
    flex-direction: column;
  }

  .feedbackButton {
    right: 12px;
    bottom: 12px;
  }
}
