/**
 * Route Navigation Styles (из Site_Widgets_filled.html + Select2 customization)
 */
.rnav {
	max-width: 560px;
}
.rnav-card {
	border: 1px solid #e7ebf3;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 10px 24px rgba(18, 24, 38, 0.08);
	padding: 16px;
}
.rnav-title {
	margin: 0 0 14px 0;
	font-weight: 850;
	font-size: 14px;
	color: #5b6472;
	letter-spacing: -0.01em;
}
.rnav-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}
.rnav-pair {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}
@media (min-width: 400px) {
	.rnav-pair {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}
}
.rnav-field {
	min-width: 0;
}
.rnav-label {
	font-size: 12px;
	color: #5b6472;
	margin: 0 0 7px 0;
	font-weight: 800;
	letter-spacing: -0.01em;
}
.rnav-card select.rnav-select {
	width: 100%;
	height: 46px;
	border: 1px solid #e7ebf3;
	border-radius: 12px;
	background: #fff;
	padding: 10px 12px;
	font-size: 14px;
	font-weight: 650;
	color: #121826;
	outline: none;
}
.rnav-card select.rnav-select:focus {
	border-color: #cbd5e1;
	box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
}
.rnav-actions {
	margin-top: 14px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
}
.rnav-btn {
	width: 100%;
	justify-content: center;
	padding: 12px 14px;
}
@media (min-width: 420px) {
	.rnav-btn {
		width: auto;
	}
}
.rnav-hint {
	margin-top: 10px;
	font-size: 13px;
	color: #5b6472;
}

/* Button styles */
.btnx {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 14px;
	border-radius: 12px;
	border: 1px solid #111827;
	background: #111827;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.12s ease;
	cursor: pointer;
}
.btnx:hover {
	background: #0b1220;
	color: #fff;
}

/* Select2 custom theme (scoped to .rnav) */
.rnav .select2-container {
	width: 100% !important;
	line-height: normal;
}
.rnav .select2-container--default .select2-selection--single {
	height: 46px;
	border: 1px solid #e7ebf3;
	border-radius: 12px;
	background: #fff;
	display: flex;
	align-items: center;
	padding: 0 42px 0 12px;
	outline: none;
	transition:
		border-color 0.12s ease,
		box-shadow 0.12s ease;
}
.rnav .select2-container--default.select2-container--focus
	.select2-selection--single {
	border-color: #cbd5e1;
	box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
}
.rnav .select2-container--default
	.select2-selection--single
	.select2-selection__rendered {
	color: #121826;
	padding: 0;
	line-height: 1.2;
	font-size: 14px;
	font-weight: 650;
}
.rnav .select2-container--default
	.select2-selection--single
	.select2-selection__placeholder {
	color: #5b6472;
	font-weight: 600;
}
.rnav .select2-container--default
	.select2-selection--single
	.select2-selection__arrow {
	height: 46px;
	right: 10px;
	width: 24px;
}
.rnav .select2-container--default
	.select2-selection--single
	.select2-selection__arrow
	b {
	border-color: #5b6472 transparent transparent transparent;
	border-width: 5px 5px 0 5px;
	margin-left: -5px;
	margin-top: -2px;
	opacity: 0.9;
}
.rnav .select2-container--default
	.select2-selection--single
	.select2-selection__clear {
	position: absolute;
	right: 42px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 18px;
	line-height: 1;
	color: #5b6472;
	opacity: 0.8;
	padding: 0 2px;
}
.rnav .select2-container--default
	.select2-selection--single
	.select2-selection__clear:hover {
	opacity: 1;
	color: #121826;
}

/* Disabled / locked Select2 field */
.rnav .select2-container--disabled .select2-selection--single {
	background: #f3f4f6;
	border-color: #e7ebf3;
	cursor: not-allowed;
	opacity: .85;
}
.rnav .select2-container--disabled .select2-selection--single .select2-selection__rendered {
	color: #5b6472;
}
.rnav .select2-container--disabled .select2-selection--single .select2-selection__arrow b {
	opacity: .4;
}

/* Select2 dropdown (renders outside .rnav in body) */
.select2-dropdown.rnav-dropdown {
	border: 1px solid #e7ebf3;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 24px rgba(18, 24, 38, 0.08);
	background: #fff;
}
.select2-dropdown.rnav-dropdown .select2-search--dropdown {
	padding: 10px;
	border-bottom: 1px solid #e7ebf3;
	background: #fff;
}
.select2-dropdown.rnav-dropdown .select2-search__field {
	width: 100%;
	border: 1px solid #e7ebf3;
	border-radius: 12px;
	padding: 10px 10px;
	font-size: 14px;
	outline: none;
}
.select2-dropdown.rnav-dropdown .select2-search__field:focus {
	border-color: #cbd5e1;
	box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
}
.select2-dropdown.rnav-dropdown .select2-results__options {
	max-height: 260px;
}
.select2-dropdown.rnav-dropdown .select2-results__option {
	padding: 10px 12px;
	font-size: 14px;
	color: #121826;
}
.select2-dropdown.rnav-dropdown
	.select2-results__option--highlighted.select2-results__option--selectable {
	background: #f3f4f6;
	color: #121826;
}
.select2-dropdown.rnav-dropdown .select2-results__option--selected {
	background: #111827;
	color: #fff;
}
