.naemt-selector-widget {
	max-width: 100%;
	margin: 0;
	font-family: inherit;
}

.naemt-selector__title {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.naemt-selector__form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.naemt-selector__grid {
	display: grid;
	gap: 0.75rem;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.naemt-selector__field {
	position: relative;
	display: flex;
	flex-direction: column;
}

.naemt-selector__field::after {
	content: '\25BC';
	font-size: 0.6rem;
	color: var(--naemt-selector-arrow-color, #2870ff);
	position: absolute;
	top: calc(50% + 0.3rem);
	right: 0.7rem;
	transform: none;
	pointer-events: none;
}

.naemt-selector__field label {
	font-size: 0.8rem;
	font-weight: 500;
	margin-bottom: 0.25rem;
	color: #555;
}

.naemt-selector__field select {
	width: 100%;
	padding: 0.65rem 0.85rem;
	padding-right: 2.5rem;
	border: 2px solid #2870ff;
	border-radius: 12px;
	font-size: 1rem;
	background-color: #fff;
	appearance: none;
	background-image: none;
}

.naemt-selector__field select::-ms-expand {
	display: none;
}

.naemt-selector__field select:disabled {
	border-color: #cfd8e3;
	color: #a0aec0;
	background-image: none;
}

.naemt-selector__field select:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(40, 112, 255, 0.2);
}

.naemt-selector__actions {
	display: flex;
	justify-content: flex-start;
}

.naemt-selector__submit {
	background-color: #2870ff;
	color: #fff;
	font-size: 1rem;
	padding: 0.7rem 1.75rem;
	border: none;
	border-radius: 999px;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.1s ease;
}

.naemt-selector__submit:hover:not(:disabled) {
	background-color: #205bca;
}

.naemt-selector__submit:disabled {
	background-color: #a0aec0;
	cursor: not-allowed;
}

.naemt-selector__status {
	margin-top: 0.75rem;
	font-size: 0.9rem;
	color: #445;
}

.naemt-selector__status.is-error {
	color: #c53030;
}

@media (max-width: 1024px) {
	.naemt-selector__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 425px) {
	.naemt-selector__grid {
		grid-template-columns: 1fr;
	}
}
