/*
* Style for class timetable
*/
main.classes figure.timetable {
	margin: 0;
}
main.classes article table {
	border-collapse: collapse;
}
main.classes article table tr {
	border: solid 1px #888;
	background-color: #DDD;
}
main.classes article table td {
	padding: 1em;
	line-height: 2em;
}
main.classes h3 {
	border: none;
	padding: 0.5em 0.75em;
	text-align: left;
	background-color: orange;
	color: white;
	margin-bottom: 0;
	font-weight: normal;
}
main.classes article figure.timetable table tr td:first-child {
	padding: 0 1.5em 0 1.5em;
	width: 4.5em;
	font-weight: bold;
}
main.classes article figure.live_timetable table tr td {
	padding: 0.5em 1.5em;
}
/*
 Styles for the store button
*/
main.classes input {
	font-size: 1em;
	margin: 0.5em 0;
	padding: 0.25em 1em;
	border: solid 1px white;
	border-radius: 0.25em;
	background-color: #555;
	color: white;
}
main.classes input:hover {
	background-color: white;
	color: black;
	border: solid 1px black;
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
	main.classes article table caption {
		background-color: #D80;
		color: white;
	}
	main.classes article table td {
		background-color: #181818;
	}
}