/* Abuse report modal — landingv2 (light + dark via tokens) */
.report-box {
  position: fixed;
  display: inline-block;
  background-color: var(--elevated, #fff);
  color: var(--ink, #111);
  width: 30rem;
  max-width: 100%;
  max-height: 90vh;
  overflow: hidden;
  border-right: none;
  right: -100%;
  bottom: 0;
  z-index: 10000;
  box-shadow: -1px 1px 4px 0 var(--shadow-lg, rgba(51, 51, 51, 0.36));
  transition: 0.6s right;
  font-family: "Satoshi", system-ui, sans-serif;
  border-left: 1px solid var(--line, #e5e7eb);
}
.report-box.open { right: 0; bottom: 0; }
.report-box .report-box-header {
  position: relative;
  background-color: var(--soft, #f3f3f3);
  text-align: center;
  padding: 20px 25px;
  border-bottom: 1px solid var(--line, transparent);
}
.report-box .report-box-header h4 {
  color: var(--ink, #292b2c);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}
.report-box .report-box-header .report-close-btn {
  position: absolute;
  color: var(--muted, #999);
  font-size: 1.4rem;
  padding: 6px 8px;
  right: 4px;
  top: 5px;
  cursor: pointer;
}
.report-box .report-box-body {
  position: relative;
  padding: 10px 0 25px;
  max-height: 80vh;
  overflow-y: auto;
  background: var(--elevated, #fff);
}
.report-box .report-box-body .report-form {
  padding: 15px 0;
  margin: 0 20px;
}
.report-box .report-box-body .report-form .options-wrap { margin-bottom: 15px; }
.report-box .report-box-body .report-form .options-wrap .option-wrap {
  color: var(--ink, #000);
  font-size: 1rem;
  margin-bottom: 6px;
}
.report-box .report-box-body .report-form .options-wrap .option-wrap.extra-field { display: none; }
.report-box .report-box-body .report-form .options-wrap .option-wrap label {
  display: inline;
  padding-left: 4px;
  cursor: pointer;
}
.report-box .report-box-body .report-form .report-email,
.report-box .report-box-body .report-form .report-website_url,
.report-box .report-box-body .report-form .report-reason,
.report-box .report-box-body .report-form .report-msg {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px 12px;
  font-size: 16px;
  line-height: 1.5;
  resize: none;
  color: var(--ink, #333);
  background: var(--input-bg, #fff);
  border: 1px solid var(--line, #ddd);
  border-radius: 8px;
  box-sizing: border-box;
}
.report-box .report-box-body .report-form .report-msg { height: 150px; }
/* The widget is an iframe with no margins of its own, so without this the submit
 * button sits flush against it. */
.report-box .report-box-body .report-form .recaptcha {
  margin: 6px 0 18px;
}
/* Hidden by inline display:none until validation fails, so this margin only
 * takes effect when the message is actually shown. */
.report-box .report-box-body .report-form .recaptcha #g-recaptcha-error {
  margin-bottom: 8px;
}
.report-box .report-box-body .report-form .report-send-btn {
  display: inline-block;
  width: 100%;
  border: none;
  padding: 10px 12px;
  background-color: var(--accent, #8418d9);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border-radius: 10px;
}
.report-box .report-box-body .report-success-box {
  display: none;
  visibility: hidden;
  position: absolute;
  inset: 0;
  background-color: var(--soft, #e9e8eb);
  color: var(--ink, #000);
  padding: 4rem 20px 0;
  text-align: center;
  transform: translateY(-100%) scale(0);
}
.report-box .report-box-body .report-success-box.show {
  display: block;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.report-box .report-box-body .report-success-box h4 {
  font-size: 2.4rem;
  padding-bottom: 20px;
}
.report-box .report-box-body .confirmation-box {
  position: absolute;
  left: 20px;
  right: 20px;
  padding-bottom: 20px;
  background-color: var(--elevated, #fff);
  border: 1px solid var(--line, #dee2e6);
  border-radius: 8px;
  color: var(--ink, #111);
  box-shadow: 0 4px 8px 0 var(--shadow, rgba(51, 51, 51, 0.2));
  transform: scale(0);
  visibility: hidden;
  opacity: 0;
  bottom: -50%;
  transition: all 0.4s ease-in;
}
.report-box .report-box-body .confirmation-box.show {
  transform: scale(1);
  visibility: visible;
  opacity: 1;
  bottom: 20px;
}
.report-box .report-box-body .confirmation-box .c-title {
  background-color: var(--soft, #f3f3f3);
  padding: 12px 5px;
  text-align: center;
  font-size: 1.2rem;
}
.report-box .report-box-body .confirmation-box .c-body {
  padding: 20px 10px;
  text-align: center;
  color: var(--muted, inherit);
}
.report-box .report-box-body .confirmation-box .c-footer { text-align: center; }
.report-box .report-box-body .confirmation-box .c-footer .c-btn {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--line, #dee2e6);
  border-radius: 8px;
}
.report-box .report-box-body .confirmation-box .c-footer .c-btn.btn-cancel {
  margin-right: 5px;
  background-color: var(--soft, #f3f3f3);
  color: var(--ink, #111);
}
.report-box .report-box-body .confirmation-box .c-footer .c-btn.btn-confirm {
  background-color: var(--danger, red);
  color: #fff;
  border-color: transparent;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
