/* ────────────── TOP BAR (existing, cleaned up a bit) ────────────── */
#top_bar {
	color: inherit;
	position: relative;
	text-decoration: none;
}

#top_bar ul#logged_in {
	position: absolute;
	top: 0;
	right: 0;
	float: inline-end;
}

#top_bar ul {
	padding: 5px;
	margin: 0;
	background-color: #ccd9ff;
}

#top_bar li {
	padding: 0 10px;
	display: inline;
}

#top_bar li a {
	font-size: 1.5em;
	text-decoration: none;
	color: inherit;
}

#top_bar li a:hover {
	color: #3724e2;
}

/* Responsive tweaks */
@media (max-width: 900px) {
	#top_bar li a {
		padding-top: 10px;
	}
}

@media (min-width: 900px) {
	#top_bar li a {
		padding-top: 0;
	}
}

/* ────────────── NAVIGATION BAR (new section) ────────────── */
#navigation {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 5px 10px;
	background: #b8c6ff; /* lighter than #ccd9ff for contrast */
	border-bottom: 1px solid #99aaff;
	user-select: none;
}

#navigation div {
	width: 24px;
	height: 24px;
	background-size: contain;
	background-repeat: no-repeat;
	cursor: pointer;
	transition: opacity 0.2s;
}

#navigation div:hover {
	opacity: 0.6;
}

/* Example icons – adjust URLs to your icon set */
#back { background-image: url(../assets/arrow_left.png); }
#forward { background-image: url(../assets/arrow_right.png); }
#Home { background-image: url(../assets/home.png); }
#refresh { background-image: url(../assets/refresh.png); }

#searchbar {
	flex-grow: 1;
	max-width: 300px;
	display: flex;
	align-items: center;
}

#searchbar input {
	width: 100%;
	padding: 4px 8px;
	border: 1px solid #aaa;
	border-radius: 4px;
	font-size: 1em;
}
