/* Instant search dropdown. Deliberately neutral so it sits under whichever
   header each of the five sites uses without being restyled per theme. */
.chps-drop{
	position:absolute;
	z-index:9999;
	top:calc(100% + 6px);
	left:0;
	right:0;
	min-width:260px;
	max-height:min(70vh,420px);
	overflow-y:auto;
	background:#fff;
	color:#16161d;
	border-radius:12px;
	box-shadow:0 12px 34px rgba(0,0,0,.22);
	padding:6px;
}
.chps-item{
	display:flex;
	align-items:center;
	gap:10px;
	padding:7px 9px;
	border-radius:9px;
	text-decoration:none;
	color:inherit;
	line-height:1.3;
}
.chps-item img,.chps-noimg{
	width:48px;
	height:48px;
	flex:0 0 48px;
	border-radius:7px;
	object-fit:cover;
	background:#e8e8ef;
}
.chps-t{font-size:14px;font-weight:600}
.chps-item:hover,.chps-item.is-active{background:#eef1ff}
.chps-empty{padding:14px 12px;font-size:14px;opacity:.7}
.chps-all{
	display:block;
	margin-top:4px;
	padding:9px;
	text-align:center;
	font-size:13px;
	font-weight:700;
	text-decoration:none;
	color:#2b3ad6;
	border-top:1px solid #ececf2;
}
@media (prefers-color-scheme:dark){
	.chps-drop{background:#1b1b24;color:#f2f2f6}
	.chps-item:hover,.chps-item.is-active{background:#2a2a38}
	.chps-all{color:#9fb0ff;border-top-color:#2c2c3a}
	.chps-item img,.chps-noimg{background:#2a2a38}
}
