/* Holocaust-era surname record pages.
   Loaded only on those pages via the per-page EXTRA_CSS hook in config.inc.php,
   so these rules never affect the rest of the site. The record tables are wide
   (up to ~17 columns), so the page content is allowed to use the full window
   width instead of the site's default 65ch reading measure. */

.content,
.content-body {
	/* Override the site's centered ~1100px content cap so the wide record
	   tables can use the full window width. */
	max-width: none;
}

#record_groups {
	margin-top: 1.5rem;
}

#record_groups h2 {
	font-size: 1.05rem;
	line-height: 1.3;
	margin: 2rem 0 0.4rem;
}

#record_groups table {
	border-collapse: collapse;
	width: 100%;
	margin-bottom: 0.5rem;
	font-size: 0.85rem;
}

#record_groups th,
#record_groups td {
	border: 1px solid #d4d0c8;
	padding: 4px 8px;
	text-align: left;
	vertical-align: top;
}

#record_groups thead th {
	background: #f3f1ec;
	font-weight: bold;
	/* Keep each table's header row visible while scrolling through that table. */
	position: sticky;
	top: 0;
	z-index: 1;
}
