/* Wikipedia-inspired Stylesheet */

body {
	font-family: sans-serif;
	xfont-size: 0.875rem; /* Wikipedia uses a slightly smaller default body text */
	font-size: 1.175rem;  /* no it doesn't */
	line-height: 1.6;
	color: #202122; /* Standard Wikipedia dark gray text */
	background-color: #ffffff;
	padding: 2.5rem;
	margin: 0 auto;
}

story-time {
	display: block;      /* 👑 FIX: Allows max-width and centering to work */
	max-width: 60rem;   /* Prevents lines from getting too long to read comfortably */
	margin: 0 auto;
	padding-top: 0.05px;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
	color: #000000;
	font-family: 'Linux Libertine', 'Georgia', 'Times', serif; /* The classic Wiki serif heading font */
	font-weight: normal;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
}

h1 {  /* the page title */
	font-size: 1.8rem;
	border-bottom: 1px solid #a2a9b1; /* The iconic thin line under article titles */
	padding-bottom: 0.25rem;
	margin-top: 0;
}

h2 {
	font-size: 1.5rem;
	border-bottom: 1px solid #a2a9b1; /* Section headers also get the bottom border */
	padding-bottom: 0.25rem;
}

h3 {
	font-size: 1.2rem;
	font-weight: bold; /* Subsections switch to bold instead of relying just on size */
	font-family: sans-serif; /* Wiki switches back to sans-serif for h3 and below */
}

h4 {
	font-size: 1rem;
	font-weight: bold;
	font-family: sans-serif;
}

h5 {
	font-size: 0.875rem;
	font-weight: bold;
	font-family: sans-serif;
}

p {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}

.custom-dropdown {
	font-size: 1.1rem; /* Adjusts text size */
	padding: 6px 10px; /* Gives the dropdown some breathing room */
	border: 1px solid #a2a9b1; /* Matches the Wikipedia gray border */
	border-radius: 2px;
	background-color: #fff;
}

/* Ensures the dropdown list items match the size */
.custom-dropdown option {
	font-size: 1.1rem;
}
