/* Global styles */

body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
}

/* Header styles */

header {
	background-color: #0047ab;
	color: #fff;
	padding: 20px;
}

header a {
	color: #fff;
	text-decoration: none;
	font-weight: bold;
}

h1 {
	font-size: 2em;
	margin: 0;
}

h2 {
	font-size: 1.5em;
	margin: 0;
}

/* Section styles */

section {
	padding: 20px;
	margin: 20px 0;
	background-color: #f2f2f2;
	border-radius: 5px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
	max-width: 800px; /* Added to limit the width of the content */
	margin-left: auto; /* Added to center the content */
	margin-right: auto; /* Added to center the content */
}

h3 {
	font-size: 1.2em;
	margin: 0 0 10px;
}

p {
	font-size: 1em;
	line-height: 1.5;
	margin: 5px;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

li {
	font-size: 1em;
	line-height: 1.5;
	margin: 0 0 10px;
}

/* Article styles */

article {
	margin: 20px 0;
}

h4 {
	font-size: 1.1em;
	margin: 0 0 10px;
}

em {
	font-style: italic;
}

/* Link styles */

a {
	color: #0047ab;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* Footer styles */

footer {
	background-color: #f2f2f2;
	padding: 20px;
	text-align: center;
	font-size: 0.8em;
	color: #666;
	border-top: 1px solid #ddd;
}

footer p {
	margin: 0;
}

/* Image styles */

.text-image {
	width: 100%;
	height: auto;
	display: block;
	margin: 5px 0;
}

.image-popup {
	display: none;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
	justify-content: center; /* Horizontally centers the content */
	align-items: center;     /* Vertically centers the content */
}

.image-popup-content img {
	max-width: 95%;
	margin: auto;
	display: block;
}

/* Image Popup Text */

.image-popup-text {
	color: #fff;
	text-align: center;
	margin-top: 5px;
}

/* Map Navigation */

.map-navigation {
	position: absolute;
	bottom: 15px;
	padding: 6px 8px;
	background: white;
	background: rgba(255,255,255,0.8);
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
	border-radius: 5px;
	z-index: 1000;
}
.map-navigation.prev {
	left: 10px;
}
.map-navigation.next {
	right: 10px;
}
.map-navigation a {
	text-decoration: none;
	color: #333;
}
.map-navigation a:hover {
	color: #666;
}
