/*
 * Oninit Legal Center - page-specific CSS overlay.
 *
 * Loaded by /legal/content.php so it applies to every legal page
 * without touching the shared site CSS. Mirrors the greenscreen /
 * logwalker / ripper overlays so headings, paragraphs, lists,
 * tables, and inline code identifiers render in line with the
 * surrounding legacy.css typography.
 */

/* Tables: visible grid, tahoma cells matching legacy <td>/<th> rules */
.legal-content table.legacy {
	border-collapse: collapse;
	margin: 8px 4px 12px 4px;
	font-family: tahoma;
	font-size: 12px;
	color: #000000;
	width: auto;
	max-width: 100%;
	text-align: left;
}

.legal-content table.legacy th,
.legal-content table.legacy td {
	border: 1px solid #c0a880;
	padding: 6px 10px;
	vertical-align: top;
	text-align: left;
}

.legal-content table.legacy th {
	background-color: #f2eddc;
	color: #7e4400;
	font-weight: bold;
}

.legal-content table.legacy tr:nth-child(even) td {
	background-color: #fbf8ee;
}

/* Lists: legacy.css sets font but not list-style; round bullets plus
 * an indent so the bullet shows up against the cream background. */
.legal-content ul.legacy {
	list-style-type: disc;
	margin-left: 24px;
	padding-left: 16px;
	font-family: tahoma;
	font-size: 12px;
	color: #000000;
}

.legal-content ul.legacy li {
	margin-top: 2px;
	margin-bottom: 2px;
	color: #000000;
}

/* Ordered lists: explicit decimal numbering so site-wide CSS doesn't
 * reset list-style to none and leave the steps unnumbered. */
.legal-content ol.legacy {
	list-style-type: decimal;
	list-style-position: outside;
	margin: 8px 4px 12px 24px;
	padding-left: 16px;
	font-family: tahoma;
	font-size: 12px;
	color: #000000;
}

.legal-content ol.legacy li {
	display: list-item;
	margin-top: 2px;
	margin-bottom: 2px;
	color: #000000;
}

/* Headings: legacy.css styles h2.legacy / h3.legacy; bring raw <h3>
 * (page title) and <h2> without class in line. */
.legal-content h3 {
	font-size: 16px;
	font-family: tahoma;
	color: #7e4400;
	margin-top: 8px;
	margin-bottom: 12px;
}

.legal-content h2.legacy {
	margin-top: 18px;
	margin-bottom: 6px;
}

/* Inline em used for code-ish identifiers - olive shade so it reads
 * as code inline, matching pre.legacy / .command. */
.legal-content em.legacy,
.legal-content em {
	color: #6b5a1f;
	font-style: normal;
}

/* Body paragraphs: comfortable line-height, capped width so long
 * lines stay readable. */
.legal-content p,
.legal-content p.legacy {
	line-height: 1.45;
	max-width: 64em;
	text-align: left;
}

/* Code blocks: faint cream wash so pre blocks separate from prose. */
.legal-content pre.legacy {
	background-color: #fbf8ee;
	border: 1px solid #e8e0c8;
	padding: 8px 10px;
	overflow-x: auto;
	max-width: 100%;
	white-space: pre;
	margin: 8px 0;
}

/* Sidenav section divider per SIDENAV.MD canonical rule. */
.sidenav .sidenav-section {
	display: block;
	margin-top: 14px;
	margin-bottom: 4px;
	padding: 4px 12px 4px 12px;
	border-top: 1px solid #d8c8a8;
	font-family: tahoma;
	font-size: 11px;
	font-weight: bold;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #7e4400;
}
