/* main.css
 * Basic stylesheet for the custom CMS front-end.
 */

html,
body {
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
	background-color: #f6f7f8;
	color: #333;
}

.container {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 20px;
}

.site-header {
	background-color: #ffffff;
	border-bottom: 1px solid #e0e0e0;
	padding: 10px 0;
}

.site-title {
	margin: 0;
	font-size: 24px;
}

.site-title a {
	text-decoration: none;
	color: #333;
}

.main-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}

.main-nav li {
	margin-right: 15px;
}

.main-nav a {
	text-decoration: none;
	color: #333;
	font-size: 16px;
}

.main-nav a:hover {
	color: #007b8f;
}

.content {
	padding: 20px;
	min-height: calc(100vh - 120px - 62px);
}

.site-footer {
	background-color: #ffffff;
	border-top: 1px solid #e0e0e0;
	padding: 20px 0;
	text-align: center;
	font-size: 14px;
	color: #666;
}

.site-footer a {
	color: #007b8f;
	text-decoration: none;
}

.site-footer a:hover {
	text-decoration: underline;
}
