.user-report-list { display: grid; gap: 12px; }
.user-report-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.user-report-card.is-flagged { border-color: #f2960c; box-shadow: 0 0 0 2px rgba(242, 150, 12, .12); }
.user-report-card summary { display: flex; min-height: 58px; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 18px; cursor: pointer; list-style: none; }
.user-report-card summary::-webkit-details-marker { display: none; }
.user-report-card summary span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.user-report-card.is-unread summary span { color: var(--brick); font-weight: 800; }
.user-report-card summary b { color: #b57b00; font-size: 1.15rem; }
.user-report-body { padding: 0 18px 18px; border-top: 1px solid var(--line); }
.user-report-body > p { margin: 16px 0; line-height: 1.65; }
.user-report-body > small { display: block; color: var(--muted); }
.user-report-body .button-row { justify-content: flex-end; margin-top: 16px; }
.user-report-body form { margin: 0; }
