.select-search-wrapper {
	position: relative;
	display: block;
	width: 100%;
}

.select-search-native {
	position: absolute !important;
	inset: 0 !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.select-search-trigger {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	padding: 12px 42px 12px 14px;
	border: 1px solid #c7d1da;
	border-radius: 6px;
	background: #fff;
	color: #1f2933;
	font: inherit;
	line-height: 1.4;
	text-align: left;
	cursor: pointer;
	box-sizing: border-box;
}

.select-search-trigger:focus,
.select-search-field:focus,
.select-search-option:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16);
}

.select-search-trigger::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 16px;
	width: 8px;
	height: 8px;
	border-right: 2px solid #4b5563;
	border-bottom: 2px solid #4b5563;
	transform: translateY(-70%) rotate(45deg);
	transition: transform 0.2s ease;
}

.select-search-wrapper.is-open .select-search-trigger::after {
	transform: translateY(-30%) rotate(-135deg);
}

.select-search-panel {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	z-index: 25;
	padding: 8px;
	background: #fff;
	border: 1px solid #c7d1da;
	border-radius: 10px;
	box-shadow: 0 16px 32px rgba(15, 23, 42, 0.14);
	box-sizing: border-box;
}

.select-search-field {
	display: block;
	width: 100%;
	margin: 0 0 8px;
	padding: 10px 12px;
	border: 1px solid #d9e2ec;
	border-radius: 6px;
	background: #fff;
	color: #1f2933;
	font: inherit;
	box-sizing: border-box;
}

.select-search-options {
	max-height: 240px;
	overflow-y: auto;
}

.select-search-option {
	display: block;
	width: 100%;
	padding: 10px 12px;
	border: 0;
	border-radius: 6px;
	background: transparent;
	color: inherit;
	font: inherit;
	text-align: left;
	cursor: pointer;
	box-sizing: border-box;
}

.select-search-option:hover,
.select-search-option:focus {
	background: #f4f7fb;
}

.select-search-option.is-selected {
	background: #e8f1f8;
	font-weight: 600;
}

.select-search-empty {
	padding: 12px;
	color: #617184;
	font-size: 0.95em;
	text-align: center;
}

.select-search-panel[hidden],
.select-search-empty[hidden] {
	display: none;
}

.select-search-trigger:disabled {
	background: #f5f7fa;
	color: #9aa5b1;
	cursor: not-allowed;
}
