.review-report-btn {
  display: block;
  margin-top: 8px;
  background: none;
  border: none;
  padding: 0;
  color: gray;
  text-decoration: underline;
  cursor: pointer;
  font-size: 13px;
}

.review-report-btn:hover {
  opacity: 0.75;
}

.grecaptcha-badge {
  visibility: hidden !important;
}

/* Modal form labels */
#review-report-modal .field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #444;
}

/* Textarea and text inputs */
#review-report-modal textarea,
#review-report-modal input[type="text"],
#review-report-modal input[type="email"] {
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  font-size: 14px;
  transition: border-color 0.2s;
}

#review-report-modal textarea:focus,
#review-report-modal input[type="text"]:focus,
#review-report-modal input[type="email"]:focus {
  border-color: #e2097e;
}

/* Checkbox */
#review-report-modal .checkbox-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 20px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.4;
}

#review-report-modal input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 1px;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.15s, border-color 0.15s;
}

#review-report-modal input[type="checkbox"]:checked {
  background-color: #e2097e;
  border-color: #e2097e;
}

#review-report-modal input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

/* Buttons */
#review-report-modal button[type="submit"] {
  background: #e2097e;
  color: #fff;
  border: 2px solid #e2097e;
  border-radius: 24px;
  padding: 10px 28px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.2s;
}

#review-report-modal button[type="submit"]:hover {
  opacity: 0.85;
}

#review-report-modal button[type="submit"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#review-report-modal button[type="button"] {
  background: #fff;
  color: #e2097e;
  border: 1px solid #e2097e;
  border-radius: 24px;
  padding: 8px 28px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.2s;
}

#review-report-modal button[type="button"]:hover {
  background: #fdf0f7;
}
