/* Global styled select – same look as career modal dropdown */

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

.ge-cr-select-native {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.ge-cr-select-custom {
	position: relative;
	width: 100%;
}

.ge-cr-select-trigger {
	width: 100%;
	min-height: 42px;
	padding: 9px 17px;
	border-radius: 20px;
	background: #E4E4E4;
	border: 1px solid #E4E4E4;
	color: #000;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	text-align: left;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	transition: 0.3s;
	outline: none;
}

.ge-cr-select-trigger:hover {
	background: #e0e0e0;
}

.ge-cr-select-wrapper.is-open .ge-cr-select-trigger {
	border-color: #25B461;
	background: #fff;
}

.ge-cr-select-wrapper.is-open .ge-cr-arrow-svg {
	transform: rotate(0deg);
}

.ge-cr-select-wrapper.is-open .ge-cr-arrow-svg path {
	fill: #25B461;
}

.ge-cr-select-trigger-text {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ge-cr-select-dropdown {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 6px);
	max-height: 240px;
	overflow-y: auto;
	background: #fff;
	border: 1px solid #E4E4E4;
	border-radius: 20px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	z-index: 100;
	display: none;
}

.ge-cr-select-wrapper.is-open .ge-cr-select-dropdown {
	display: block;
}

.ge-cr-select-option {
	padding: 12px 17px;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #000;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.ge-cr-select-option:first-child {
	border-radius: 20px 20px 0 0;
}

.ge-cr-select-option:last-child {
	border-radius: 0 0 20px 20px;
}

.ge-cr-select-option:hover {
	background: #f0f9f4;
	color: #25B461;
}

.ge-cr-select-option.is-selected {
	background: #f0f9f4;
	color: #25B461;
	font-weight: 600;
}

.ge-cr-select-custom .ge-cr-arrow-svg {
	position: static;
	margin-top: 0;
	flex-shrink: 0;
	transition: transform 0.3s ease;
	transform: rotate(180deg);
}
