/* Top Bar Styles */
#top-bar {
    position: sticky;
    top: 0;
	background-color: rgb(20, 0, 40);
	color: #aaa;
	padding: 0.5rem 20px;
	text-align: right;
	font-size: 0.9rem;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

#top-bar a {
	margin-left: 1rem;
	text-decoration: none;
	color: #aaa; /* changed from rgb(20,0,40) */
}

#top-bar a:hover {
	text-decoration: underline;
	color: white; /* optional: highlight on hover */
}

header {
	background-color: white;
	color: #004d99;
	text-align: center;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
}

header h1 {
	margin: 0;
	font-size: 2.2rem;
	font-weight: 600;
	color: #004d99;
}

header img {
    height: 80px; /* Adjust this value to your desired height */
    width: auto; /* Maintain aspect ratio */
    max-width: 100%; /* Ensure it doesn't overflow its container if you make it very large */
}

nav ul {
	list-style: none;
	display: flex;
	margin: 0;
	padding: 0;
	align-items: center;
}

nav ul li {
	margin-left: 2rem;
}

nav ul li a {
	color: rgba(20, 0, 40, 1);
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 500;
	transition: color 0.3s ease;
}

nav ul li a:hover {
	color: #870505;
}

