.forum-report-widget {
  display: inline-flex;
  align-items: center;
  margin-left: 0.5rem;
}

.forum-report-widget .report-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: transparent;
  border: none;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  color: #888;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.forum-report-widget .report-btn:hover {
  color: #dc3545;
}

.forum-report-widget .report-submitted {
  color: #888;
  font-size: 0.85rem;
  font-style: italic;
}

.forum-report-widget .report-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.forum-report-widget .report-modal-content {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.forum-report-widget .report-modal-content h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.forum-report-widget .report-modal-content p {
  color: #666;
  margin-bottom: 1rem;
}

.forum-report-widget .report-option {
  display: block;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 4px;
}

.forum-report-widget .report-option:hover {
  background: #f5f5f5;
}

.forum-report-widget .report-option input {
  margin-right: 0.5rem;
}

.forum-report-widget .report-details-container {
  margin-top: 1rem;
}

.forum-report-widget .report-details-container label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.forum-report-widget .report-details-container textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  resize: vertical;
}

.forum-report-widget .report-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.forum-report-widget .report-cancel {
  background: #f5f5f5;
  border: 1px solid #ddd;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
}

.forum-report-widget .report-cancel:hover {
  background: #e9ecef;
}

.forum-report-widget .report-submit {
  background: #dc3545;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
}

.forum-report-widget .report-submit:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.forum-report-widget .report-submit:not(:disabled):hover {
  background: #c82333;
}
