*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	font-family: sans-serif, Arial, Helvetica;
	line-height: 1.6;
	margin: 0px;
	padding: 0px;
	background-color: #f5f5f5; /* Lichter, minder blauwe achtergrond */
	display: flex;
	flex-direction: column;
	align-items: center;
}

.generic-txt {
	margin: 30px 0;
	margin: 0px;
	font-size: 14px;
	font-weight: 300;
}

h1,
h2,
h3,
h4 {
	color: #800000; /* Donkerrood in plaats van blauw */
}

.clearfix {
	clear: both;
}

ol,
ul {
	padding-left: 0;
	margin-left: 0;
	list-style-position: inside;
}

hr {
	border: none;
	border-top: 1px solid #ccc;
	width: 100%;
	margin: 4px 0;
}

a {
	cursor: pointer;
	color: #800000; /* Donkerrood voor links */
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a img {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
}

.container {
	display: flex;
	flex-wrap: nowrap;
	margin: 0 auto;
	width: 100%;
	max-width: 1200px;
	padding: 10px;
	margin: 20px auto;
}

.left-main-wrapper {
	display: flex;
	flex: 1 1 auto;
}

.pagination {
	text-align: center;
	margin-top: 20px;
	display: flex;
	justify-content: center;
}

.pagination a {
	margin: 0 5px;
	text-decoration: none;
	color: #800000; /* Donkerrood in plaats van blauw */
}

.pagination span {
	color: #555;
}

/*FOOTER*/
.footer {
	width: 100%;
	background-color: #111; /* Bijna zwart */
	color: #fff;
	padding: 0px 20px;
}

.footer-top {
	display: flex;
	justify-content: space-between;
	margin-bottom: 4px;
}

.footer-column {
	flex: 1;
	padding: 0 10px;
	text-align: left;
}

.footer-bottom {
	text-align: center;
	border-top: 1px solid #333;
	padding: 10px 0;
	font-size: 0.9em;
}

ul.footerlinks,
ul.footermenu {
	color: #666;
	display: inline-block;
	list-style: none;
	padding: 0;
	margin-left: 26%;
	font-size: 0.8rem;
}

ul.footermenu {
	font-size: 1rem;
}

ul.footerlinks li,
ul.footermenu li {
	margin-right: 1rem;
}

ul.footerlinks li a,
ul.footermenu li a {
	color: #999;
	text-decoration: none;
	transition: text-decoration 0.2s ease-in-out;
}

ul.footerlinks li a:hover,
ul.footermenu li a:hover {
	text-decoration: underline;
}

#histats_counter {
	margin: auto;
	width: 64px;
	height: 15px;
	overflow: hidden;
	border: 1px solid #555;
	border-radius: 6px;
}

#histats_counter img {
	opacity: 0.7;
	width: 66px;
	height: auto;
	position: relative;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -2px);
	min-width: 100%;
	min-height: 100%;
}

@media (max-width: 1024px) {

	ul.footerlinks,
	ul.footermenu {
		margin-left: 8px;
		font-size: 0.9rem;
	}
}

/* Responsieve aanpassingen */
@media (max-width: 640px) {
	body {
		background-color: #ffffff;
	}
}