/*
 * TexArrest County Sort — front-end styles
 * Scoped to .ta-county-sort to avoid conflicts with the active theme.
 */

.ta-county-sort {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-block-end: 1.25rem;
	font-size: 0.9375rem; /* 15px relative to 16px base */
}

.ta-county-sort form {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
}

.ta-county-sort label {
	font-weight: 600;
	white-space: nowrap;
}

.ta-county-sort select,
.ta-county-sort button {
	padding: 0.375rem 0.625rem;
	border: 1px solid currentColor;
	border-radius: 4px;
	background-color: transparent;
	color: inherit;
	font: inherit;
	cursor: pointer;
	/* Ensure the select is wide enough to show options without truncation */
	min-width: 12rem;
}

.ta-county-sort button {
	min-width: auto;
}

.ta-county-sort select:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.ta-county-sort button:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}
