body {
	font-family: Arial, sans-serif;font-size:14px;
	transition: background-color 0.3s, color 0.3s;
		max-width: 1200px;
		margin: 0 auto;
	}

.light-mode {
	background-color: #fffff0;
	color: #000000;
	}

.dark-mode {
	background-color: #121212;
	color: #e0e0e0;
	}

a {
	color: inherit;
	text-decoration: none;
	}

a:hover {
	text-decoration: underline;
	}

.toggle-btn {
	position: fixed;
	top: 0px;
	height:19px;
	right: 10px;
	fint-size:9px;
	padding: 1px;
	cursor: pointer;
	background-color: #000000;
	color: #ffffff;
	border: 2px ridge #151515;
	z-index:10;
	}

.light-mode .toggle-btn {
	background-color: #a9a9a9;
	color: #000000;
	border: 2px ridge #d3d3d3;
	}

h1 {
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	}

.light-mode h1 {
	background-color: #8b4513;
	color: #ffffff;
	}

.dark-mode h1 {
	background-color: #333333;
	}

h2 { height:16px; }

.content-wrapper {
	display: flex;
	margin: 20px;
	}

.main-content {
	flex: 3;
	}

.sidebar {
	flex: 1;
	margin-left: 20px;
	background-color: #f0f0f0;
	padding: 0px 0 0 10px;;
	border-radius: 5px;
	}

.dark-mode .sidebar {
	background-color: #333333;
	}

.light-mode .sidebar {
	background-color: #d3d3d3;
	}

footer {
	padding: 0 0 0 10px;
	font-size:10px;
	display: flex;
	align-items: center;
	height: 20px;
	background-color: #333333;
	color: #e0e0e0;
	}

.light-mode footer {
	background-color: #8b4513;
	color: #ffffff;
	}

.aligned-list {
	display: table;
	width: 100%;
	}
.aligned-list dt, .aligned-list dd {
	display: table-row;
	}
.aligned-list dt, .aligned-list dd {
	padding: 0.2em 0;
	}
.aligned-list dt::after, .aligned-list dd {
	display: table-cell;
	padding-left: 16px;
	}
.download { color:#ffff5b; }
