.report-shell {
	min-height: calc(100vh - 60px);
	background: var(--bg);
	padding: 32px 16px;
}
.report-panel {
	max-width: 720px;
	margin: 0 auto;
	background: var(--bg-surface);
	border: 1px solid var(--border);
	border-radius: 8px;
	box-shadow: var(--shadow);
	padding: 28px;
}
.report-heading {
	margin-bottom: 24px;
}
.report-heading h1 {
	margin: 0 0 8px;
	font-size: 26px;
	color: var(--text);
}
.report-heading p {
	margin: 0;
	color: var(--text-muted);
	line-height: 1.55;
}
.report-form {
	display: grid;
	gap: 16px;
}
.case-context {
	display: grid;
	gap: 14px;
	margin: -4px 0 22px;
	padding: 16px;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: var(--bg-soft);
}
.case-context h2 {
	margin: 0;
	font-size: 17px;
	color: var(--text);
}
.case-context-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 10px;
}
.case-context-grid div,
.case-context-block {
	display: grid;
	gap: 4px;
}
.case-context span {
	font-size: 12px;
	font-weight: 700;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: .04em;
}
.case-context strong {
	color: var(--text);
	font-weight: 650;
}
.case-context p {
	margin: 0;
	color: var(--text);
	line-height: 1.5;
	white-space: pre-wrap;
}
.report-form label {
	display: grid;
	gap: 7px;
}
.report-form label span {
	font-size: 13px;
	font-weight: 600;
	color: var(--text);
}
.report-form textarea {
	resize: vertical;
	min-height: 150px;
}
.attachment-list {
	display: grid;
	gap: 6px;
	font-size: 13px;
	color: var(--text-muted);
}
.attachment-pill {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	border: 1px solid var(--border);
	background: var(--bg-soft);
	border-radius: 6px;
	padding: 8px 10px;
}
.attachment-pill strong {
	color: var(--text);
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
@media (max-width: 640px) {
	.report-panel { padding: 20px; }
	.report-heading h1 { font-size: 22px; }
}
