/* Базовая стилизация */
.custom-select-wrapper {
	position: relative;
	width: 100%;
	max-width: 300px;
	margin: 10px 0;
}

.custom-select-trigger {
	padding: 12px;
	border: 1px solid #ddd;
	cursor: pointer;
	background: #fff;
	border-radius: 4px;
	position: relative;
	padding-right: 35px;
}
.custom-select-trigger::after {
	content: '';
	width: 16px;
	height: 16px;
	position: absolute;
	right: 10px;
	top: calc(50% - 8px); 
	background: url('chevron.svg') center center no-repeat;
}

.custom-select-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #ddd;
	border-top: 0;
	border-radius: 0 0 4px 4px;
	max-height: 200px;
	overflow-y: auto;
	display: none;
	z-index: 100;
}

.custom-select-dropdown.open {
	display: block;
}

.custom-select-option {
	padding: 12px;
	cursor: pointer;
	transition: background 0.3s;
}

.custom-select-option:hover {
	background: #f5f5f5;
}

.custom-select-option.selected {
	background: #364a68;
	color: #fff;
}