/*
Welcome to custom CSS for the WSU Spine Theme!

You may delete these comments and get started with your custom stylesheet.
Before doing so, please review the WSU web standards:

https://brand.wsu.edu/media/web/web-standards/

As a general rule of thumb, if your styles target aspects of the spine
(#spine), that's against standard, whereas if you're styling elsewhere on
the page, it's all good.
/* ===== Scoped to Duplicated Publications Page ===== */
#duplicated-publications-page .year-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background-color: #f5f5f5;
	padding: 10px 20px;
	margin-bottom: 30px;
	border-radius: 6px;
	font-weight: bold;
}

#duplicated-publications-page .year-nav a {
	color: #A40000;
/* Crimson color */
	text-decoration: none;
	font-weight: normal;
}

#duplicated-publications-page .year-nav a:hover {
	text-decoration: underline;
}

/* ===== Search and Filter Controls ===== */
#duplicated-publications-page .filter-controls {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 30px;
}

#duplicated-publications-page #pub-search {
	padding: 8px 12px;
	font-size: 1em;
	border: 1px solid #ccc;
	border-radius: 4px;
	width: 250px;
}

/* Year filter styled as a clickable list */
#duplicated-publications-page #year-filter {
	list-style: none;
	padding: 0;
	margin-left: 15px;
	display: flex;
	cursor: pointer;
	align-items: center;
}

#duplicated-publications-page #year-filter li {
	background: #eee;
	padding: 6px 12px;
	border-radius: 4px;
	border: 1px solid #ccc;
}

#duplicated-publications-page #year-filter li:hover {
	background: #ddd;
}

#duplicated-publications-page #year-filter li.active {
	background-color: #A40000;
	color: white;
}

/* ===== Year Section Blocks ===== */
#duplicated-publications-page .year-block {
	margin-bottom: 50px;
	padding: 20px;
	border-top: 2px solid #ddd;
}

#duplicated-publications-page .year-block h2 {
	font-size: 1.8em;
	color: #A40000;
	margin-bottom: 15px;
}

/* ===== Publication List ===== */
#duplicated-publications-page .publication-list {
	list-style: none;
	padding-left: 0;
}

#duplicated-publications-page .publication-list li {
	margin-bottom: 15px;
	line-height: 1.6;
}

/* ===== Back to Top Link ===== */
#duplicated-publications-page .back-to-top {
	display: inline-block;
	margin-top: 5px;
	font-size: .9em;
	text-decoration: none;
	color: #555;
}

#duplicated-publications-page .back-to-top:hover {
	color: #000;
}