/* feedback-widget.css — floating "Feedback" button + modal, plus the
   shared in-app "Beta" badge. */
.beta-badge {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.05rem 0.4rem;
  background: #DDD92A;
  color: #2D2A32;
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  vertical-align: middle;
}

/* feedback-widget.css — floating "Feedback" button + modal */
.fw-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #2D2A32;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(45, 42, 50, 0.25);
  transition: background 0.15s;
}
.fw-button:hover { background: #46414f; }

.fw-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(45, 42, 50, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.fw-overlay[hidden] { display: none; }

.fw-modal {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(45, 42, 50, 0.2);
  width: 100%;
  max-width: 440px;
  padding: 1.5rem;
  font-family: 'Libre Franklin', sans-serif;
  color: #2D2A32;
}
.fw-modal h2 { font-size: 1.125rem; font-weight: 600; margin: 0 0 0.25rem; }
.fw-modal .fw-sub { font-size: 0.85rem; color: #5a5860; margin: 0 0 1rem; line-height: 1.5; }

.fw-field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.9rem; }
.fw-field label { font-size: 0.85rem; font-weight: 500; color: #5a5860; }
.fw-field select,
.fw-field textarea {
  border: 1px solid #dddbd8;
  border-radius: 6px;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.9375rem;
  padding: 0.55rem 0.75rem;
  outline: none;
  color: #2D2A32;
  width: 100%;
}
.fw-field textarea { min-height: 110px; resize: vertical; }
.fw-field select:focus,
.fw-field textarea:focus {
  border-color: #DDD92A;
}

.fw-actions { display: flex; justify-content: flex-end; gap: 0.5rem; margin-top: 0.5rem; }
.fw-btn {
  border: none;
  border-radius: 6px;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  cursor: pointer;
}
.fw-btn-secondary { background: #f0efed; color: #2D2A32; }
.fw-btn-secondary:hover { background: #e4e2df; }
.fw-btn-primary { background: #DDD92A; color: #2D2A32; }
.fw-btn-primary:hover { background: #b8b520; }
.fw-btn-primary:disabled { background: #EEEFA8; cursor: not-allowed; }

.fw-message { font-size: 0.85rem; margin-top: 0.75rem; min-height: 1.1em; }
.fw-message.error { color: #E71D36; }
.fw-message.success { color: #4a4800; }
