/* Writing Filter Accessibility Styles */
.sr-only {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.filter-status {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

[role="button"]:focus {
	outline: 2px solid #005fcc;
	outline-offset: 2px;
}

/* Empty state styling */
.local-empty-state {
	display: none;
	text-align: center;
	padding: 2rem;
	background: #f9f9f9;
	border-radius: 8px;
	margin: 1rem 0;
}

.empty-message h3 {
	color: #666;
	margin-bottom: 1rem;
}

.empty-message p {
	color: #888;
	margin-bottom: 1.5rem;
}

.clear-filters-btn {
	background: #005fcc;
	color: white;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 4px;
	cursor: pointer;
	font-size: 1rem;
	transition: background-color 0.3s ease;
}

.clear-filters-btn:hover,
.clear-filters-btn:focus {
	background: #004499;
	outline: 2px solid #005fcc;
	outline-offset: 2px;
}

.clear-filters-btn:active {
	background: #003366;
}

/* Load More Button */
.load-more-btn {
	display: block;
	margin: 2rem auto 0;
	padding: 0.75rem 2rem;
	background: transparent;
	border: 1px solid currentColor;
	cursor: pointer;
	font-size: 1.2rem;
	font-family: var(--sans-serif);
	letter-spacing: 2.4px;
}

.load-more-btn[hidden] {
	display: none;
}

.load-more-btn:hover,
.load-more-btn:focus {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

