
.report-widget__overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: reportFadeIn 0.2s ease;
}

@keyframes reportFadeIn { from { opacity: 0; } to { opacity: 1; } }

.report-widget {
  width: 100%;
  max-width: 480px;
  max-height: 80vh;
  background: #1a1a1a;
  border-radius: 20px 20px 0 0;
  display: flex;
  flex-direction: column;
  animation: reportSlideUp 0.3s ease;
  overflow: hidden;
}

@keyframes reportSlideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

.report-widget__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.report-widget__back {
  width: 36px; height: 36px; border-radius: 50%;
  border: none; background: rgba(255,255,255,0.06); color: #fff;
  cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 15px;
}

.report-widget__title { font-weight: 700; font-size: 16px; color: #fff; }
.report-widget__spacer { width: 36px; }

.report-widget__content {
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.report-widget__subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.5;
}
.report-widget__subtitle strong { color: #fff; }

.report-widget__reasons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.report-widget__reason {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
  text-align: left;
}

.report-widget__reason:hover { background: rgba(255,255,255,0.08); }
.report-widget__reason.is-selected {
  border-color: var(--c-accent);
  background: rgba(168,85,247,0.1);
}

.report-widget__reason i:first-child {
  width: 20px;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}

.report-widget__reason span { flex: 1; }
.report-widget__check { color: var(--c-accent); font-size: 16px; }

.report-widget__textarea {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  resize: none;
}

.report-widget__textarea:focus { border-color: var(--c-accent); }
.report-widget__char-count { font-size: 11px; color: rgba(255,255,255,0.3); text-align: right; }

.report-widget__btn {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: 0.2s;
}

.report-widget__btn--primary { background: var(--c-accent); color: #000; }
.report-widget__btn--primary:disabled { opacity: 0.4; cursor: not-allowed; }

.report-widget__done {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 20px;
  text-align: center;
}

.report-widget__done-icon { font-size: 52px; color: #8ab633; }
.report-widget__done h3 { font-size: 18px; font-weight: 700; color: #fff; margin: 0; }
.report-widget__done p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; margin: 0; }