/* Rapor paneli (feed, forum, gruplar) */
.report-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.report-overlay.open {
  display: flex;
}

#bandReportOverlay {
  z-index: 1400;
}

#bandReportOverlay .report-box {
  pointer-events: auto;
}

.report-box {
  background: var(--card, #fff);
  border-radius: 20px;
  width: 100%;
  max-width: 440px;
  padding: 1.5rem 1.5rem 1.25rem;
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.18);
  position: relative;
  border: 1px solid var(--border, #e2e8f0);
}

html.dark .report-box {
  background: #131828;
  border-color: #1e2d4a;
}

.report-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--gray-100, #f1f5f9);
  color: var(--gray-500, #64748b);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.report-title {
  font-family: 'Instrument Serif', serif;
  font-size: 1.25rem;
  color: var(--text, #0f172a);
  margin-bottom: 0.35rem;
  padding-right: 2rem;
}

.report-sub {
  font-size: 0.82rem;
  color: var(--muted, #64748b);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.report-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-700, #334155);
  margin-bottom: 6px;
}

.report-textarea {
  width: 100%;
  min-height: 110px;
  resize: vertical;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--text, #0f172a);
  background: var(--card, #fff);
  outline: none;
  line-height: 1.55;
}

.report-textarea:focus {
  border-color: var(--blue-400, #60a5fa);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.09);
}

.report-char {
  text-align: right;
  font-size: 0.7rem;
  color: var(--muted, #64748b);
  margin-top: 4px;
  margin-bottom: 1rem;
}

.report-actions {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
}

.report-btn-cancel {
  background: transparent;
  border: 1px solid var(--border, #e2e8f0);
  color: var(--muted, #64748b);
  padding: 0.55rem 1.1rem;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  cursor: pointer;
}

.report-btn-submit {
  background: #ef4444;
  color: white;
  border: none;
  padding: 0.55rem 1.25rem;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  cursor: pointer;
}

.report-btn-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Kategori seçimi */
.report-cat-row {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 1rem;
}

.bb-report-cat {
  border: 1px solid var(--border);
  background: var(--gray-50, #f8fafc);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 100px;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 1;
  transition: background .15s, border-color .15s, color .15s, box-shadow .15s;
}

.report-box .report-cat-row {
  pointer-events: auto;
  position: relative;
  z-index: 2;
}

html.dark .bb-report-cat {
  background: #131828;
  border-color: #334155;
}

.bb-report-cat:hover {
  border-color: var(--blue-300, #93c5fd);
  color: var(--blue-700, #1d4ed8);
}

.bb-report-cat.is-selected {
  background: var(--blue-50);
  border-color: var(--blue-400);
  color: var(--blue-700);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.12);
}

html.dark .bb-report-cat.is-selected {
  background: #0d1829;
  color: var(--blue-400);
  border-color: var(--blue-500);
}

.report-textarea--optional {
  min-height: 88px;
}

.report-hint {
  font-size: .72rem;
  color: var(--muted);
  margin: -0.35rem 0 .65rem;
  line-height: 1.4;
}
