.report-trigger,
.comment-report-action {
  color: #ef5350 !important;
  border-color: rgba(239, 83, 80, .55) !important;
}
.report-trigger:hover,
.comment-report-action:hover {
  color: #ff7774 !important;
  background: rgba(239, 83, 80, .10) !important;
  border-color: #ef5350 !important;
}
body.report-modal-open { overflow: hidden; }
.report-modal-overlay {
  position: fixed; inset: 0; z-index: 5000;
  display: grid; place-items: center; padding: 20px;
  background: rgba(0, 0, 0, .78);
}
.report-modal-overlay[hidden] { display: none; }
.report-modal {
  width: min(520px, 100%); max-height: min(760px, 90vh); overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid rgba(255,255,255,.18); border-radius: 8px;
  background: #111; color: rgba(255,255,255,.86);
  box-shadow: 0 24px 80px rgba(0,0,0,.58);
}
.report-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 17px 20px; border-bottom: 1px solid rgba(255,255,255,.12);
  flex: 0 0 auto;
}
.report-modal-header h2 { margin: 0; color: #fff; font: 600 15px/1.3 Inter, sans-serif; }
.report-modal-close {
  width: 30px; height: 30px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.15); border-radius: 5px;
  background: rgba(255,255,255,.04); color: rgba(255,255,255,.72);
  font: 20px/1 sans-serif; cursor: pointer;
}
.report-modal-close:hover { background: rgba(255,255,255,.09); color: #fff; }
.report-modal-form { max-height: calc(90vh - 66px); overflow-y: auto; padding: 20px; position: relative; }
.report-modal-intro { margin: 0 0 15px; color: rgba(255,255,255,.58); font: 12.5px/1.6 Inter, sans-serif; }
.report-reasons { display: grid; gap: 8px; margin: 0; padding: 0; border: 0; }
.report-reasons legend { margin-bottom: 8px; color: rgba(255,255,255,.82); font: 600 12px/1.4 Inter, sans-serif; }
.report-reason-option {
  position: relative; display: grid; grid-template-columns: 18px 1fr; align-items: center; gap: 10px;
  padding: 10px 11px; border: 1px solid rgba(255,255,255,.13); border-radius: 4px;
  background: rgba(255,255,255,.025); color: rgba(255,255,255,.76);
  font: 12.5px/1.4 Inter, sans-serif; cursor: pointer;
}
.report-reason-option:hover { border-color: rgba(239,83,80,.46); }
.report-reason-option input { position: absolute; opacity: 0; pointer-events: none; }
.report-reason-marker { width: 16px; height: 16px; box-sizing: border-box; border: 1px solid rgba(255,255,255,.34); border-radius: 3px; }
.report-reason-option input:checked + .report-reason-marker { border-color: #ef5350; background: #ef5350; box-shadow: inset 0 0 0 3px #111; }
.report-reason-option input:focus-visible + .report-reason-marker { outline: 2px solid #fff; outline-offset: 2px; }
.report-description-label { display: grid; gap: 7px; margin-top: 18px; color: rgba(255,255,255,.72); font: 600 12px/1.4 Inter, sans-serif; }
.report-description {
  box-sizing: border-box; width: 100%; resize: vertical; min-height: 105px;
  padding: 11px; border: 1px solid rgba(255,255,255,.16); border-radius: 4px;
  background: #090909; color: rgba(255,255,255,.86); font: 13px/1.6 Inter, sans-serif;
}
.report-description-count { justify-self: end; color: rgba(255,255,255,.4); font-size: 10.5px; font-weight: 400; }
.report-modal-message { min-height: 18px; margin-top: 10px; color: #ff7774; font: 12px/1.5 Inter, sans-serif; }
.report-modal-footer {
  position: sticky; z-index: 2; bottom: -20px;
  display: flex; justify-content: flex-end; gap: 9px;
  margin: 15px -20px -20px; padding: 15px 20px 20px;
  border-top: 1px solid rgba(255,255,255,.13); background: #111;
  box-shadow: 0 -12px 24px rgba(0,0,0,.34);
}
.report-modal-button { padding: 8px 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 4px; background: rgba(255,255,255,.04); color: rgba(255,255,255,.8); font: 600 12px/1.2 Inter, sans-serif; cursor: pointer; }
.report-modal-button:hover { background: rgba(255,255,255,.09); color: #fff; }
.report-modal-submit { border-color: #ef5350; background: #d8423f; color: #fff; }
.report-modal-submit:hover { border-color: #ff7774; background: #ef5350; color: #fff; }
.report-modal-button:disabled, .report-modal-close:disabled { cursor: wait; opacity: .55; }
