/* ═══════ Report issue floating button + modal (shared across bots) ═══════ */
.btn-report-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #1f2937;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: background 0.15s, transform 0.15s;
}
.btn-report-fab:hover {
  background: #374151;
  transform: translateY(-1px);
}
.btn-report-fab svg {
  flex-shrink: 0;
}

.report-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  padding: 16px;
}
.report-overlay[hidden] {
  display: none;
}
.report-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}
.report-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #6b7280;
  line-height: 1;
  padding: 4px 8px;
}
.report-close:hover { color: #111827; }
.report-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}
.report-hint {
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 16px;
}
.report-textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  box-sizing: border-box;
}
.report-textarea:focus {
  outline: 2px solid #6d28d9;
  outline-offset: -1px;
  border-color: #6d28d9;
}
.report-include-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 16px;
  font-size: 12px;
  color: #6b7280;
  cursor: pointer;
}
.report-include-row input[type="checkbox"] {
  accent-color: #6d28d9;
}
.report-error {
  color: #b91c1c;
  font-size: 13px;
  margin: 0 0 12px;
}
.report-error[hidden] { display: none; }
.report-submit {
  width: 100%;
  padding: 10px;
  background: #6d28d9;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.report-submit:hover { background: #5b21b6; }
.report-submit:disabled { opacity: 0.6; cursor: not-allowed; }
