.yleditor {
	top: 0px;
	left: 0px;
	position: absolute;
	width: 100%;
	height: 100%;
}
.yleditor .yleditor-tabpane {
	top: 0px;
	left: 0px;
	background-color: #101b2b;
	border-right: 2px solid #223759;	
	position: absolute;
	width: 44px;
	height: 100%;
}
.yleditor-tabpane img.yenda-logo {
	width: 38px;
	margin-top: 6px;
	margin-left: 2px;
}
.yleditor .yleditor-tabpane .yendaui-tablist > button.selected {
	background-color: #4169AA;
}
.yleditor .yleditor-tabpane .yendaui-tablist {
	position: absolute;
	top: 112px;
	right: 0;
	bottom: 64px;
	left: 0;
	overflow-x: hidden;
	overflow-y: auto;
	margin-top: 0;
	scrollbar-width: none;
}
.yleditor .yleditor-tabpane .yendaui-tablist::-webkit-scrollbar {
	display: none;
}
.yleditor .yleditor-preferencepane {
	position: absolute;
	top: 50px;
	right: 2px;
	left: 2px;
	z-index: 250;
	display: flex;
	justify-content: center;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(255,255,255,0.12);
}
.yleditor .yleditor-sessionpane {
	position: absolute;
	right: 0;
	bottom: calc(8px + env(safe-area-inset-bottom, 0px));
	left: 0;
	display: flex;
	justify-content: center;
	padding-top: 8px;
	border-top: 1px solid rgba(255,255,255,0.12);
}
.yleditor .yleditor-tabpane .yendaui-tab {
	border-right: 0px;
	width: 46px;
	height: 44px;
	font-size: 20px;
	margin-bottom: 2px;
}
.yenda-language-switcher {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.28rem 0.35rem;
	border: 1px solid rgba(65,105,170,0.24);
	border-radius: 999px;
	background: rgba(255,255,255,0.76);
	color: #35598f;
	box-shadow: 0 5px 16px rgba(23,48,82,0.12);
}
.yenda-language-options {
	display: inline-flex;
	gap: 0.2rem;
}
.yenda-language-option {
	min-width: 2rem;
	padding: 0.2rem 0.38rem;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: #4b6484;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	line-height: 1.4;
	cursor: pointer;
}
.yenda-language-option:hover,
.yenda-language-option:focus-visible {
	outline: none;
	background: rgba(65,105,170,0.12);
	color: #274a7d;
}
.yenda-language-option.active {
	background: #4169aa;
	color: #fff;
	box-shadow: 0 2px 7px rgba(27,58,103,0.24);
}
.yenda-language-switcher.compact {
	position: relative;
	display: block;
	width: 40px;
	height: 44px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	overflow: visible;
}
.yenda-language-switcher.compact .yenda-language-trigger {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(151,187,239,0.3);
	border-radius: 10px;
	background: rgba(255,255,255,0.07);
	color: rgba(230,240,255,0.9);
	cursor: pointer;
	transition: border-color 0.14s ease, background-color 0.14s ease, color 0.14s ease;
}
.yenda-language-switcher.compact .yenda-language-trigger:hover,
.yenda-language-switcher.compact .yenda-language-trigger:focus-visible,
.yenda-language-switcher.compact.open .yenda-language-trigger {
	outline: none;
	border-color: rgba(151,187,239,0.68);
	background: rgba(65,105,170,0.34);
	color: #fff;
}
.yenda-language-switcher.compact .yenda-language-trigger > i {
	font-size: 19px;
	line-height: 1;
}
.yenda-language-switcher.compact .yenda-language-current {
	position: absolute;
	right: 2px;
	bottom: 2px;
	min-width: 15px;
	padding: 1px 2px;
	border: 1px solid rgba(255,255,255,0.28);
	border-radius: 4px;
	background: #4169aa;
	color: #fff;
	font-size: 0.47rem;
	font-weight: 800;
	letter-spacing: 0.03em;
	line-height: 1.2;
	text-align: center;
}
.yenda-language-switcher.compact .yenda-language-options {
	position: absolute;
	top: 0;
	left: calc(100% + 8px);
	display: grid;
	grid-template-columns: 1fr;
	gap: 3px;
	min-width: 148px;
	max-height: min(70vh, 24rem);
	margin: 0;
	padding: 5px;
	overflow-x: hidden;
	overflow-y: auto;
	border: 1px solid rgba(137,174,226,0.38);
	border-radius: 10px;
	background: rgba(16,27,43,0.97);
	box-shadow: 0 10px 28px rgba(5,16,31,0.36);
	opacity: 0;
	visibility: hidden;
	transform: translateX(-7px);
	pointer-events: none;
	transition: opacity 0.14s ease, transform 0.14s ease, visibility 0s linear 0.14s;
}
.yenda-language-switcher.compact.open .yenda-language-options {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
	pointer-events: auto;
	transition-delay: 0s;
}
.yenda-language-switcher.compact .yenda-language-menu-option {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	width: 100%;
	min-width: 0;
	min-height: 38px;
	padding: 0.42rem 0.55rem;
	border-radius: 7px;
	background: transparent;
	color: rgba(233,241,255,0.74);
	box-shadow: none;
	text-align: left;
}
.yenda-language-switcher.compact .yenda-language-menu-option:hover,
.yenda-language-switcher.compact .yenda-language-menu-option:focus-visible {
	outline: none;
	background: rgba(116,157,218,0.18);
	color: #fff;
}
.yenda-language-switcher.compact .yenda-language-menu-option[aria-checked="true"] {
	background: #4169aa;
	color: #fff;
}
.yenda-language-switcher.compact .yenda-language-code {
	min-width: 1.8rem;
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.06em;
}
.yenda-language-switcher.compact .yenda-language-name {
	font-size: 0.78rem;
	font-weight: 650;
	letter-spacing: normal;
}
@media (prefers-reduced-motion: reduce) {
	.yenda-language-switcher.compact .yenda-language-trigger,
	.yenda-language-switcher.compact .yenda-language-options {
		transition: none;
	}
}
.invisible {
	display: none !important;
}

.yleditor .yleditor-perspectivepane {
	background: url('../img/login-backdrop-alt.jpg');
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.yleditor-contextmenupane {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 5000;
	pointer-events: none;
}
.yleditor-contextmenupane .yl-context-menu {
	pointer-events: auto;
}

.yleditor .yleditor-perspectivepane .yleditor-notificationpane {
	position: absolute;
	top: 0px;
	right: 0px;
}
.yenda-notification {
	background-color: rgba(255,255,255,.9);
	box-shadow: 0 .25rem .75rem rgba(0,0,0,.6);
}

.yleditor .yleditor-perspectivepane .yleditor-notificationpane .toast {
	min-width: 300px;
}

.yleditor .yleditor-perspectivepane .yleditor-notificationpane .toast .notification-action-color {
	font-size: 100%;
}

.yleditor .yleditor-perspective {
	overflow: hidden;
	top: 0px;
	left: 44px;
	position: absolute;
	background-color: #4169AA;
	right: 0px;
	bottom: 0px;
}

/* Preview Perspective */

.yleditor .yleditor-projectspane {
	overflow-y: auto;
	padding: 2rem 2rem 2.5rem;
	background: linear-gradient(145deg, rgba(16,27,43,0.76), rgba(42,78,133,0.62));
	backdrop-filter: blur(2px);
}

.yleditor .yleditor-projectspane .projects-dashboard {
	max-width: 1280px;
	margin: 0 auto;
	color: #f3f7ff;
}

.yleditor .yleditor-projectspane .projects-hero-card,
.yleditor .yleditor-projectspane .projects-status-card {
	border-radius: 20px;
	padding: 1.5rem 1.6rem;
	min-height: 100%;
	background: linear-gradient(180deg, rgba(8,19,33,0.74), rgba(28,52,85,0.74));
	border: 1px solid rgba(255,255,255,0.14);
	box-shadow: 0 18px 40px rgba(0,0,0,0.24);
	position: relative;
	overflow: hidden;
}

.yleditor .yleditor-projectspane .projects-hero-card::after,
.yleditor .yleditor-projectspane .projects-status-card::after {
	content: '';
	position: absolute;
	inset: auto -20% -45% auto;
	width: 220px;
	height: 220px;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 70%);
	pointer-events: none;
}

.yleditor .yleditor-projectspane .projects-kicker {
	text-transform: uppercase;
	letter-spacing: 0.22em;
	font-size: 0.72rem;
	font-weight: 700;
	color: rgba(201,219,255,0.76);
	margin-bottom: 0.5rem;
}

.yleditor .yleditor-projectspane .projects-title {
	font-size: clamp(1.8rem, 2.4vw, 2.8rem);
	font-weight: 700;
	line-height: 1.05;
	margin-bottom: 0.7rem;
}

.yleditor .yleditor-projectspane .projects-subtitle,
.yleditor .yleditor-projectspane .projects-status-text {
	max-width: 44rem;
	color: rgba(238,244,255,0.82);
	margin-bottom: 1rem;
	font-size: 0.98rem;
	line-height: 1.55;
}

.yleditor .yleditor-projectspane .projects-current-user {
	display: inline-flex;
	gap: 0.75rem;
	align-items: center;
	flex-wrap: wrap;
	padding: 0.55rem 0.8rem;
	border-radius: 999px;
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.14);
	font-size: 0.92rem;
}

.yleditor .yleditor-projectspane .projects-current-user .label,
.yleditor .yleditor-projectspane .projects-current-user .project-count {
	color: rgba(231,239,255,0.74);
	font-size: 0.84rem;
}

.yleditor .yleditor-projectspane .projects-status-headline {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.yleditor .yleditor-projectspane .projects-refresh-button {
	border-color: rgba(255,255,255,0.36);
	color: #fff;
	background: rgba(255,255,255,0.06);
	margin-bottom: 0.75rem;
}

.yleditor .yleditor-projectspane .projects-refresh-button:hover,
.yleditor .yleditor-projectspane .projects-refresh-button:focus {
	background: rgba(255,255,255,0.14);
	color: #fff;
	border-color: rgba(255,255,255,0.46);
}

.yleditor .yleditor-userpane {
	overflow-y: auto;
	padding: 2rem 2rem 2.5rem;
	background: linear-gradient(145deg, rgba(14,24,39,0.78), rgba(28,72,120,0.58));
	backdrop-filter: blur(2px);
}

.yleditor .yleditor-userpane .user-dashboard {
	max-width: 1180px;
	margin: 0 auto;
	color: #f3f7ff;
}

.yleditor .yleditor-userpane .user-hero-card,
.yleditor .yleditor-userpane .user-status-card,
.yleditor .yleditor-userpane .user-form-card,
.yleditor .yleditor-userpane .user-password-card,
.yleditor .yleditor-userpane .user-mfa-card {
	border-radius: 20px;
	padding: 1.5rem 1.6rem;
	background: linear-gradient(180deg, rgba(8,19,33,0.74), rgba(28,52,85,0.74));
	border: 1px solid rgba(255,255,255,0.14);
	box-shadow: 0 18px 40px rgba(0,0,0,0.24);
	position: relative;
	overflow: hidden;
}

.yleditor .yleditor-userpane .user-hero-card::after,
.yleditor .yleditor-userpane .user-status-card::after,
.yleditor .yleditor-userpane .user-form-card::after,
.yleditor .yleditor-userpane .user-password-card::after,
.yleditor .yleditor-userpane .user-mfa-card::after {
	content: '';
	position: absolute;
	inset: auto -20% -45% auto;
	width: 220px;
	height: 220px;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 70%);
	pointer-events: none;
}

.yleditor .yleditor-userpane .user-kicker,
.yleditor .yleditor-userpane .user-form-kicker {
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 0.72rem;
	font-weight: 700;
	color: rgba(201,219,255,0.76);
	margin-bottom: 0.45rem;
}

.yleditor .yleditor-userpane .user-title {
	font-size: clamp(1.7rem, 2.2vw, 2.4rem);
	font-weight: 700;
	line-height: 1.08;
	margin-bottom: 0.55rem;
}

.yleditor .yleditor-userpane .user-subtitle,
.yleditor .yleditor-userpane .user-status-text {
	max-width: 40rem;
	color: rgba(238,244,255,0.82);
	margin-bottom: 1rem;
	font-size: 0.98rem;
	line-height: 1.55;
}

.yleditor .yleditor-userpane .user-current-user {
	display: inline-flex;
	gap: 0.75rem;
	align-items: center;
	flex-wrap: wrap;
	padding: 0.55rem 0.8rem;
	border-radius: 999px;
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.14);
	font-size: 0.92rem;
}

.yleditor .yleditor-userpane .user-current-user .label,
.yleditor .yleditor-userpane .user-current-user .user-name {
	color: rgba(231,239,255,0.74);
	font-size: 0.84rem;
}

.yleditor .yleditor-userpane .user-status-headline,
.yleditor .yleditor-userpane .user-form-title {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: #fff;
}

.yleditor .yleditor-userpane .user-empty {
	margin-top: 1.25rem;
	border-radius: 16px;
	border: 1px solid rgba(255,255,255,0.16);
	background: rgba(255,255,255,0.12);
	color: #f3f7ff;
}

.yleditor .yleditor-userpane .user-form-card {
	margin-top: 1.25rem;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-userpane .user-password-card {
	   margin-top: 1.25rem;
	   position: relative;
	   z-index: 1;
}

.yleditor .yleditor-userpane .user-mfa-card {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 1rem;
	margin-top: 1.25rem;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-userpane .user-mfa-icon {
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	border-radius: 15px;
	background: rgba(135, 187, 255, 0.16);
	color: #cfe3ff;
	font-size: 1.35rem;
}

.yleditor .yleditor-userpane .user-mfa-copy,
.yleditor .yleditor-userpane .user-mfa-actions {
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-userpane .user-mfa-title,
.yleditor .yleditor-userpane .user-mfa-description {
	margin-bottom: 0.35rem;
}

.yleditor .yleditor-userpane .user-mfa-description {
	max-width: 46rem;
	color: rgba(238,244,255,0.78);
	font-size: 0.9rem;
	line-height: 1.5;
}

.yleditor .yleditor-userpane .user-mfa-status {
	font-size: 0.84rem;
	font-weight: 700;
	color: rgba(224,233,249,0.8);
}

.yleditor .yleditor-userpane .user-mfa-status.enabled { color: #aee8c1; }
.yleditor .yleditor-userpane .user-mfa-status.unavailable { color: #ffd59b; }
.yleditor .yleditor-userpane .user-mfa-actions {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.yleditor .yleditor-userpane .user-form-grid,
.yleditor .yleditor-userpane .user-password-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-userpane .user-form-field {
	min-width: 0;
}

.yleditor .yleditor-userpane .user-form-field label {
	display: block;
	margin-bottom: 0.45rem;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(213,227,255,0.84);
}

.yleditor .yleditor-userpane .user-form-field .form-control {
	border-radius: 12px;
	border-color: rgba(255,255,255,0.14);
	background: rgba(7,16,29,0.62);
	color: #f8fbff;
	min-height: 40px;
}

.yleditor .yleditor-userpane .user-form-field .form-control.user-password-invalid,
.yleditor .yleditor-userpane .user-form-field .form-control.user-profile-invalid {
	   border-color: rgba(255, 196, 0, 0.76);
	   box-shadow: 0 0 0 0.18rem rgba(255, 196, 0, 0.16);
}

.yleditor .yleditor-userpane .user-password-input-group .user-password-toggle {
	min-width: 42px;
	border-color: rgba(255,255,255,0.2);
	background: rgba(255,255,255,0.08);
	color: #f3f7ff;
}

.yleditor .yleditor-userpane .user-password-input-group .user-password-toggle:hover,
.yleditor .yleditor-userpane .user-password-input-group .user-password-toggle:focus-visible,
.yleditor .yleditor-userpane .user-password-input-group .user-password-toggle[aria-pressed="true"] {
	background: rgba(255,255,255,0.18);
	border-color: rgba(255,255,255,0.34);
	color: #fff;
}

.yleditor .yleditor-userpane .user-password-input-group .user-password-toggle:disabled {
	opacity: 0.45;
}

.yleditor .yleditor-userpane .user-form-field .form-control[readonly] {
	background: rgba(7,16,29,0.56);
	color: #f8fbff;
	opacity: 1;
	cursor: default;
}

.yleditor .yleditor-userpane .user-form-field .form-control:not(:disabled):focus {
	border-color: rgba(151, 196, 255, 0.72);
	box-shadow: 0 0 0 0.2rem rgba(77, 144, 255, 0.18);
}

.yleditor .yleditor-userpane .user-form-field .form-control:disabled {
	background: rgba(255,255,255,0.06);
	color: rgba(224,233,249,0.72);
	border-color: rgba(255,255,255,0.1);
	opacity: 1;
	-webkit-text-fill-color: rgba(224,233,249,0.72);
}

.yleditor .yleditor-userpane .user-form-actions {
	display: flex;
	justify-content: flex-end;
	gap: 0.65rem;
	margin-top: 1rem;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-userpane .user-password-notice,
.yleditor .yleditor-userpane .user-metadata-notice {
	   margin-top: 0.75rem;
	   margin-bottom: 0;
	   border-radius: 12px;
	   border: 1px solid rgba(255, 196, 0, 0.28);
	   background: rgba(77, 53, 0, 0.42);
	   color: #ffe4a3;
}

.yleditor .yleditor-userpane .user-form-actions .btn:disabled {
	opacity: 0.42;
	cursor: default;
}

.yleditor .yleditor-userpane .user-form-actions .btn:not(:disabled) {
	opacity: 1;
}

.yleditor .yleditor-settingspane {
	overflow-y: auto;
	padding: 2rem 2rem 2.5rem;
	background: linear-gradient(145deg, rgba(16,27,43,0.78), rgba(42,78,133,0.62));
	backdrop-filter: blur(2px);
}

.yleditor .yleditor-settingspane .settings-dashboard {
	max-width: 1320px;
	margin: 0 auto;
	color: #f3f7ff;
}

.yleditor .yleditor-settingspane .settings-shell {
	display: grid;
	grid-template-columns: 320px minmax(0, 1fr);
	gap: 1.5rem;
	align-items: start;
}

.yleditor .yleditor-settingspane .settings-sidebar {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	position: sticky;
	top: 1.5rem;
	align-self: start;
}

.yleditor .yleditor-settingspane .settings-summary-card,
.yleditor .yleditor-settingspane .settings-nav,
.yleditor .yleditor-settingspane .settings-section-panel,
.yleditor .yleditor-settingspane .settings-card {
	border-radius: 20px;
	background: linear-gradient(180deg, rgba(8,19,33,0.76), rgba(28,52,85,0.76));
	border: 1px solid rgba(255,255,255,0.14);
	box-shadow: 0 18px 40px rgba(0,0,0,0.24);
}

.yleditor .yleditor-settingspane .settings-summary-card,
.yleditor .yleditor-settingspane .settings-section-panel {
	padding: 1.45rem 1.55rem;
	position: relative;
	overflow: hidden;
}

.yleditor .yleditor-settingspane .settings-summary-card::after,
.yleditor .yleditor-settingspane .settings-section-panel::after {
	content: '';
	position: absolute;
	inset: auto -18% -48% auto;
	width: 220px;
	height: 220px;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0) 70%);
	pointer-events: none;
}

.yleditor .yleditor-settingspane .settings-kicker,
.yleditor .yleditor-settingspane .settings-card-kicker {
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 0.72rem;
	font-weight: 700;
	color: rgba(201,219,255,0.76);
	margin-bottom: 0.45rem;
}

.yleditor .yleditor-settingspane .settings-title {
	font-size: clamp(1.35rem, 1.5vw, 1.8rem);
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 0.35rem;
}

.yleditor .yleditor-settingspane .settings-project {
	font-size: 0.94rem;
	font-weight: 600;
	color: rgba(242,246,255,0.88);
	line-height: 1.45;
}

.yleditor .yleditor-settingspane .settings-context-host {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.yleditor .yleditor-settingspane .settings-nav {
	padding: 0.8rem;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.yleditor .yleditor-settingspane .settings-nav-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	justify-content: flex-start;
	padding: 0.8rem 0.95rem;
	border-radius: 14px;
	border: 1px solid rgba(255,255,255,0.14);
	background: rgba(255,255,255,0.06);
	color: #f3f7ff;
	font-weight: 600;
	text-align: left;
	box-shadow: none;
}

.yleditor .yleditor-settingspane .settings-nav-item.active,
.yleditor .yleditor-settingspane .settings-nav-item:not(:disabled):hover {
	background: rgba(92,140,214,0.22);
	border-color: rgba(150,188,255,0.38);
	color: #fff;
}

.yleditor .yleditor-settingspane .settings-nav-item:disabled {
	opacity: 0.42;
	cursor: default;
}

.yleditor .yleditor-settingspane .settings-detail {
	min-width: 0;
}

.yleditor .yleditor-settingspane .project-settings-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1.2rem;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .project-settings-grid > :only-child {
	grid-column: 1 / -1;
}

.yleditor .yleditor-settingspane .settings-card {
	padding: 1.3rem 1.35rem;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .settings-card-title {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #fff;
}

.yleditor .yleditor-settingspane .project-settings-stats {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.8rem;
	margin: 0;
}

.yleditor .yleditor-settingspane .project-settings-stats div {
	padding-bottom: 0.8rem;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.yleditor .yleditor-settingspane .project-settings-stats div:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.yleditor .yleditor-settingspane .project-settings-stats dt {
	margin: 0 0 0.2rem;
	font-size: 0.74rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(201,219,255,0.72);
}

.yleditor .yleditor-settingspane .project-settings-stats dd {
	margin: 0;
	font-size: 0.98rem;
	font-weight: 600;
	color: #f5f8ff;
	word-break: break-word;
}

.yleditor .yleditor-settingspane .project-settings-storage {
	margin-top: 1.15rem;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .project-settings-storage-label {
	font-size: 0.88rem;
	color: rgba(232,239,255,0.82);
	margin-bottom: 0.45rem;
}

.yleditor .yleditor-settingspane .project-settings-storage-bar {
	height: 10px;
	border-radius: 999px;
	background: rgba(255,255,255,0.1);
	overflow: hidden;
}

.yleditor .yleditor-settingspane .project-settings-storage-fill {
	height: 100%;
	border-radius: 999px;
	background: linear-gradient(90deg, #7bc5ff, #ffe17b);
}

.yleditor .yleditor-settingspane .project-settings-mode {
	margin-bottom: 0.8rem;
	display: inline-flex;
	padding: 0.28rem 0.6rem;
	border-radius: 999px;
	background: rgba(255,255,255,0.1);
	color: rgba(245,248,255,0.84);
	font-size: 0.8rem;
	font-weight: 600;
}

.yleditor .yleditor-settingspane .project-settings-field {
	margin-bottom: 1rem;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .project-settings-field label {
	display: block;
	margin-bottom: 0.45rem;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(213,227,255,0.84);
}

.yleditor .yleditor-settingspane .project-settings-field .form-control {
	border-radius: 12px;
	border-color: rgba(255,255,255,0.14);
	background: rgba(7,16,29,0.62);
	color: #f8fbff;
	min-height: 40px;
}

.yleditor .yleditor-settingspane .project-settings-field .form-control:focus {
	border-color: rgba(150,188,255,0.52);
	box-shadow: 0 0 0 0.2rem rgba(120,167,255,0.18);
	background: rgba(7,16,29,0.72);
	color: #fff;
}

.yleditor .yleditor-settingspane .project-settings-actions {
	display: flex;
	justify-content: flex-end;
	gap: 0.65rem;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .project-settings-language-manager {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	gap: 1rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .project-settings-language-column {
	min-width: 0;
}

.yleditor .yleditor-settingspane .project-settings-language-column-title {
	margin-bottom: 0.45rem;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(213,227,255,0.84);
}

.yleditor .yleditor-settingspane .project-settings-language-list {
	height: auto;
	min-height: 220px;
	padding: 0.35rem;
	border-radius: 16px;
	border-color: rgba(255,255,255,0.14);
	background: rgba(7,16,29,0.62);
	color: #f8fbff;
}

.yleditor .yleditor-settingspane .project-settings-language-list option {
	padding: 0.42rem 0.55rem;
	border-radius: 10px;
}

.yleditor .yleditor-settingspane .project-settings-language-controls {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	justify-content: center;
}

.yleditor .yleditor-settingspane .project-settings-language-note {
	margin-top: 0.8rem;
	font-size: 0.88rem;
	line-height: 1.5;
	color: rgba(232,239,255,0.82);
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .project-settings-default-language-select {
	border-radius: 12px;
	border-color: rgba(255,255,255,0.14);
	background: rgba(7,16,29,0.62);
	color: #f8fbff;
	min-height: 40px;
}

.yleditor .yleditor-settingspane .project-settings-default-language-select:focus {
	border-color: rgba(150,188,255,0.52);
	box-shadow: 0 0 0 0.2rem rgba(120,167,255,0.18);
	background: rgba(7,16,29,0.72);
	color: #fff;
}

.yleditor .yleditor-settingspane .export-settings-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.2rem;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .export-settings-hero-card,
.yleditor .yleditor-settingspane .export-settings-note-card {
	grid-column: 1 / -1;
}

.yleditor .yleditor-settingspane .export-settings-note {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.6;
	color: rgba(232,239,255,0.84);
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .export-settings-summary {
	margin-top: 0.95rem;
	font-size: 0.96rem;
	font-weight: 600;
	line-height: 1.5;
	color: #f5f8ff;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .export-settings-status,
.yleditor .yleditor-settingspane .export-settings-last-export {
	margin-top: 0.65rem;
	font-size: 0.88rem;
	line-height: 1.5;
	color: rgba(232,239,255,0.82);
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .export-settings-actions,
.yleditor .yleditor-settingspane .export-settings-list-toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .export-settings-actions {
	margin-top: 1rem;
}

.yleditor .yleditor-settingspane .export-settings-list-toolbar {
	margin-bottom: 0.95rem;
}

.yleditor .yleditor-settingspane .export-settings-list-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 0.7rem;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .export-settings-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 0.28rem 0.7rem;
	border-radius: 999px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.1);
	font-size: 0.82rem;
	font-weight: 700;
	color: rgba(245,248,255,0.86);
	white-space: nowrap;
}

.yleditor .yleditor-settingspane .export-settings-list {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	min-height: 248px;
	max-height: 360px;
	overflow: auto;
	padding-right: 0.2rem;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .export-settings-empty {
	min-height: 248px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.2rem;
	border-radius: 16px;
	background: rgba(7,16,29,0.46);
	border: 1px dashed rgba(255,255,255,0.12);
	text-align: center;
	color: rgba(232,239,255,0.82);
	line-height: 1.5;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .export-settings-item {
	display: flex;
	align-items: flex-start;
	gap: 0.8rem;
	padding: 0.78rem 0.9rem;
	border-radius: 16px;
	border: 1px solid rgba(255,255,255,0.1);
	background: rgba(255,255,255,0.04);
	margin: 0;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .export-settings-item:hover,
.yleditor .yleditor-settingspane .export-settings-item.selected {
	background: rgba(92,140,214,0.18);
	border-color: rgba(150,188,255,0.3);
	transform: translateY(-1px);
}

.yleditor .yleditor-settingspane .export-settings-item input {
	margin-top: 0.18rem;
	flex: 0 0 auto;
	accent-color: #7bc5ff;
	width: 16px;
	height: 16px;
}

.yleditor .yleditor-settingspane .export-settings-item-copy {
	display: flex;
	flex-direction: column;
	min-width: 0;
	gap: 0.25rem;
	flex: 1 1 auto;
}

.yleditor .yleditor-settingspane .export-settings-item-title {
	font-size: 0.96rem;
	font-weight: 600;
	line-height: 1.35;
	color: #f4f8ff;
	word-break: break-word;
}

.yleditor .yleditor-settingspane .export-settings-item-detail {
	font-size: 0.82rem;
	line-height: 1.45;
	color: rgba(213,227,255,0.76);
	word-break: break-word;
}

.yleditor .yleditor-settingspane .export-settings-panel.busy .export-settings-item {
	pointer-events: none;
	opacity: 0.82;
}

.yleditor .yleditor-settingspane .export-settings-jobs-card {
	grid-column: 1 / -1;
}

.yleditor .yleditor-settingspane .export-settings-jobs-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 0.28rem 0.7rem;
	border-radius: 999px;
	background: rgba(92,214,177,0.13);
	border: 1px solid rgba(92,214,177,0.26);
	font-size: 0.82rem;
	font-weight: 700;
	color: #cbffef;
	white-space: nowrap;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .export-settings-jobs-note,
.yleditor .yleditor-settingspane .export-settings-jobs-notice {
	position: relative;
	z-index: 1;
	font-size: 0.88rem;
	line-height: 1.55;
	color: rgba(232,239,255,0.82);
}

.yleditor .yleditor-settingspane .export-settings-jobs-note {
	margin: 0;
}

.yleditor .yleditor-settingspane .export-settings-jobs-notice {
	min-height: 1.4rem;
	margin-top: 0.85rem;
	color: #dcecff;
}

.yleditor .yleditor-settingspane .export-settings-jobs-actions .btn i,
.yleditor .yleditor-settingspane .export-settings-job-actions .btn i {
	margin-right: 0.35rem;
}

.yleditor .yleditor-settingspane .export-settings-jobs-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 0.85rem;
	margin-top: 0.75rem;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .export-settings-jobs-empty {
	grid-column: 1 / -1;
	padding: 1rem;
	border-radius: 14px;
	border: 1px dashed rgba(255,255,255,0.14);
	background: rgba(7,16,29,0.38);
	color: rgba(232,239,255,0.76);
	text-align: center;
}

.yleditor .yleditor-settingspane .export-settings-job {
	display: flex;
	flex-direction: column;
	gap: 0.62rem;
	min-width: 0;
	padding: 0.95rem;
	border-radius: 16px;
	border: 1px solid rgba(255,255,255,0.11);
	border-left: 4px solid rgba(123,197,255,0.62);
	background: rgba(7,16,29,0.46);
	box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.yleditor .yleditor-settingspane .export-settings-job.tone-success {
	border-left-color: #5cd6b1;
}

.yleditor .yleditor-settingspane .export-settings-job.tone-danger {
	border-left-color: #ff7b85;
}

.yleditor .yleditor-settingspane .export-settings-job.tone-muted {
	border-left-color: rgba(197,210,232,0.48);
	opacity: 0.86;
}

.yleditor .yleditor-settingspane .export-settings-job-header,
.yleditor .yleditor-settingspane .export-settings-job-title,
.yleditor .yleditor-settingspane .export-settings-job-meta,
.yleditor .yleditor-settingspane .export-settings-job-actions {
	display: flex;
	align-items: center;
}

.yleditor .yleditor-settingspane .export-settings-job-header {
	justify-content: space-between;
	gap: 0.8rem;
}

.yleditor .yleditor-settingspane .export-settings-job-title {
	gap: 0.48rem;
	min-width: 0;
	font-size: 0.94rem;
	font-weight: 700;
	color: #f7faff;
}

.yleditor .yleditor-settingspane .export-settings-job-title span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.yleditor .yleditor-settingspane .export-settings-job-state {
	flex: 0 0 auto;
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	background: rgba(255,255,255,0.09);
	font-size: 0.75rem;
	font-weight: 700;
	color: rgba(245,248,255,0.9);
}

.yleditor .yleditor-settingspane .export-settings-job-progress {
	height: 8px;
	overflow: hidden;
	border-radius: 999px;
	background: rgba(255,255,255,0.1);
}

.yleditor .yleditor-settingspane .export-settings-job-progress span {
	display: block;
	height: 100%;
	min-width: 2px;
	border-radius: inherit;
	background: linear-gradient(90deg, #7bc5ff, #5cd6b1);
	transition: width 0.25s ease;
}

.yleditor .yleditor-settingspane .export-settings-job-message {
	min-height: 2.5em;
	font-size: 0.84rem;
	line-height: 1.45;
	color: rgba(232,239,255,0.84);
}

.yleditor .yleditor-settingspane .export-settings-job.tone-danger .export-settings-job-message {
	color: #ffd7db;
}

.yleditor .yleditor-settingspane .export-settings-job-meta {
	flex-wrap: wrap;
	gap: 0.35rem 0.8rem;
	font-size: 0.75rem;
	color: rgba(202,218,246,0.7);
}

.yleditor .yleditor-settingspane .export-settings-job-actions {
	flex-wrap: wrap;
	gap: 0.55rem;
	margin-top: auto;
	padding-top: 0.2rem;
}

.yleditor .yleditor-settingspane .export-settings-import-card {
	grid-column: 1 / -1;
}

.yleditor .yleditor-settingspane .export-settings-import-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 0.28rem 0.7rem;
	border-radius: 999px;
	background: rgba(123,197,255,0.14);
	border: 1px solid rgba(123,197,255,0.22);
	font-size: 0.82rem;
	font-weight: 700;
	color: #dff4ff;
	white-space: nowrap;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .export-settings-import-pill.locked {
	background: rgba(255,186,110,0.14);
	border-color: rgba(255,186,110,0.24);
	color: #ffe5c1;
}

.yleditor .yleditor-settingspane .export-settings-import-form {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1rem;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .export-settings-import-field {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	margin: 0;
	min-width: 0;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .export-settings-import-label {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(213,227,255,0.84);
	line-height: 1.4;
}

.yleditor .yleditor-settingspane .export-import-format,
.yleditor .yleditor-settingspane .export-settings-file-input {
	width: 100%;
	min-height: 40px;
	padding: 0.55rem 0.7rem;
	border-radius: 12px;
	border: 1px solid rgba(255,255,255,0.14);
	background: rgba(7,16,29,0.62);
	color: #f8fbff;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.yleditor .yleditor-settingspane .export-import-format:focus,
.yleditor .yleditor-settingspane .export-settings-file-input:focus {
	outline: none;
	border-color: rgba(150,188,255,0.52);
	box-shadow: 0 0 0 0.2rem rgba(120,167,255,0.18);
	background: rgba(7,16,29,0.72);
	color: #ffffff;
}

.yleditor .yleditor-settingspane .export-settings-file-input::file-selector-button {
	margin-right: 0.75rem;
	padding: 0.4rem 0.7rem;
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 10px;
	background: rgba(255,255,255,0.08);
	color: #f4f8ff;
	cursor: pointer;
}

.yleditor .yleditor-settingspane .export-settings-import-selection,
.yleditor .yleditor-settingspane .export-settings-import-status {
	margin-top: 0.9rem;
	padding: 0.8rem 0.95rem;
	border-radius: 16px;
	border: 1px solid rgba(255,255,255,0.1);
	background: rgba(7,16,29,0.46);
	font-size: 0.88rem;
	line-height: 1.55;
	color: rgba(232,239,255,0.84);
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .export-settings-import-status.tone-success {
	background: rgba(53,178,115,0.16);
	border-color: rgba(88,212,149,0.26);
	color: #dff9ea;
}

.yleditor .yleditor-settingspane .export-settings-import-status.tone-warning {
	background: rgba(255,186,110,0.14);
	border-color: rgba(255,186,110,0.24);
	color: #ffe8c4;
}

.yleditor .yleditor-settingspane .export-settings-import-status.tone-danger {
	background: rgba(220,90,90,0.16);
	border-color: rgba(255,133,133,0.24);
	color: #ffe1e1;
}

.yleditor .yleditor-settingspane .export-settings-import-results {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1rem;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .export-settings-import-result-card {
	padding: 1rem;
	border-radius: 18px;
	background: rgba(7,16,29,0.54);
	border: 1px solid rgba(255,255,255,0.1);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.yleditor .yleditor-settingspane .export-settings-import-result-title,
.yleditor .yleditor-settingspane .export-settings-import-subtitle {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(213,227,255,0.84);
	line-height: 1.4;
}

.yleditor .yleditor-settingspane .export-settings-import-result-title {
	margin-bottom: 0.8rem;
}

.yleditor .yleditor-settingspane .export-settings-import-subtitle {
	margin-bottom: 0.55rem;
}

.yleditor .yleditor-settingspane .export-settings-import-metrics {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 0.75rem;
}

.yleditor .yleditor-settingspane .export-settings-import-metric {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	padding: 0.75rem 0.8rem;
	border-radius: 14px;
	border: 1px solid rgba(255,255,255,0.08);
	background: rgba(255,255,255,0.04);
	min-width: 0;
}

.yleditor .yleditor-settingspane .export-settings-import-metric.tone-ok {
	background: rgba(53,178,115,0.12);
	border-color: rgba(88,212,149,0.2);
}

.yleditor .yleditor-settingspane .export-settings-import-metric.tone-warning {
	background: rgba(255,186,110,0.1);
	border-color: rgba(255,186,110,0.2);
}

.yleditor .yleditor-settingspane .export-settings-import-metric.tone-danger {
	background: rgba(220,90,90,0.12);
	border-color: rgba(255,133,133,0.2);
}

.yleditor .yleditor-settingspane .export-settings-import-metric-label {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(204,220,249,0.72);
	line-height: 1.35;
}

.yleditor .yleditor-settingspane .export-settings-import-metric-value {
	font-size: 0.94rem;
	font-weight: 600;
	line-height: 1.45;
	color: #f4f8ff;
	word-break: break-word;
}

.yleditor .yleditor-settingspane .export-settings-import-asset-sections,
.yleditor .yleditor-settingspane .export-settings-import-issue-sections {
	display: grid;
	gap: 0.9rem;
}

.yleditor .yleditor-settingspane .export-settings-import-list-block {
	padding: 0.8rem 0.85rem;
	border-radius: 14px;
	border: 1px solid rgba(255,255,255,0.08);
	background: rgba(255,255,255,0.04);
}

.yleditor .yleditor-settingspane .export-settings-import-list {
	margin: 0;
	padding-left: 1.1rem;
	display: grid;
	gap: 0.45rem;
	color: rgba(232,239,255,0.84);
	font-size: 0.88rem;
	line-height: 1.5;
}

.yleditor .yleditor-settingspane .export-settings-import-list li {
	word-break: break-word;
}

.yleditor .yleditor-settingspane .export-settings-import-list li.tone-ok {
	color: #dff9ea;
}

.yleditor .yleditor-settingspane .export-settings-import-list li.tone-warning {
	color: #ffe7c1;
}

.yleditor .yleditor-settingspane .export-settings-import-list li.tone-danger {
	color: #ffd4d4;
}

.yleditor .yleditor-settingspane .export-settings-import-list li.tone-muted {
	color: rgba(204,220,249,0.62);
}

.yleditor .yleditor-settingspane .preference-settings-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1.2rem;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .preference-settings-manager {
	display: grid;
	grid-template-columns: minmax(180px, 0.8fr) minmax(240px, 1fr) minmax(220px, 0.62fr);
	gap: 1rem;
	align-items: start;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .preference-settings-library-shell {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.65fr);
	gap: 1rem;
	align-items: start;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .preference-settings-list-panel,
.yleditor .yleditor-settingspane .preference-settings-note-card {
	padding: 1rem;
	border-radius: 18px;
	background: rgba(7,16,29,0.54);
	border: 1px solid rgba(255,255,255,0.1);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.yleditor .yleditor-settingspane .preference-settings-list-title,
.yleditor .yleditor-settingspane .preference-settings-note-title {
	margin-bottom: 0.75rem;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(213,227,255,0.84);
}

.yleditor .yleditor-settingspane .preference-settings-color-list {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	min-height: 224px;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .preference-settings-polygon-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(74px, 1fr));
	gap: 0.7rem;
	align-content: start;
	min-height: 224px;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .preference-settings-empty {
	min-height: 224px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.2rem;
	border-radius: 16px;
	background: rgba(7,16,29,0.46);
	border: 1px dashed rgba(255,255,255,0.12);
	text-align: center;
	color: rgba(232,239,255,0.82);
	line-height: 1.5;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .preference-settings-item {
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .preference-settings-polygon-item {
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .preference-settings-item-button {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	width: 100%;
	padding: 0.78rem 0.9rem;
	border-radius: 16px;
	border: 1px solid rgba(255,255,255,0.1);
	background: rgba(255,255,255,0.04);
	text-align: left;
	text-decoration: none;
	color: #f4f8ff;
	box-shadow: none;
	cursor: pointer;
	transition: background-color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.yleditor .yleditor-settingspane .preference-settings-item-button:hover,
.yleditor .yleditor-settingspane .preference-settings-item.active .preference-settings-item-button,
.yleditor .yleditor-settingspane .preference-settings-item-button[aria-selected="true"] {
	background: rgba(92,140,214,0.18);
	border-color: rgba(150,188,255,0.3);
	color: #fff;
	text-decoration: none;
}

.yleditor .yleditor-settingspane .preference-settings-item-button:focus {
	box-shadow: 0 0 0 0.2rem rgba(120,167,255,0.18);
	outline: 0;
	text-decoration: none;
}

.yleditor .yleditor-settingspane .preference-settings-polygon-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0.45rem;
	border-radius: 16px;
	border: 1px solid rgba(255,255,255,0.1);
	background: rgba(255,255,255,0.04);
	text-decoration: none;
	color: #f4f8ff;
	box-shadow: none;
	min-height: 74px;
	cursor: pointer;
	transition: background-color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.yleditor .yleditor-settingspane .preference-settings-polygon-button:hover,
.yleditor .yleditor-settingspane .preference-settings-polygon-item.active .preference-settings-polygon-button,
.yleditor .yleditor-settingspane .preference-settings-polygon-button[aria-selected="true"] {
	background: rgba(92,140,214,0.18);
	border-color: rgba(150,188,255,0.3);
	color: #fff;
	text-decoration: none;
}

.yleditor .yleditor-settingspane .preference-settings-polygon-button:focus {
	box-shadow: 0 0 0 0.2rem rgba(120,167,255,0.18);
	outline: 0;
	text-decoration: none;
}

.yleditor .yleditor-settingspane .preference-settings-polygon-preview {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
}

.yleditor .yleditor-settingspane .preference-settings-polygon-preview svg {
	display: block;
	width: 48px;
	height: 48px;
}

.yleditor .yleditor-settingspane .preference-settings-color-swatch {
	flex: 0 0 46px;
	width: 46px;
	height: 14px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,0.22);
	box-shadow: 0 1px 8px rgba(0,0,0,0.22);
	background: #cccccc;
}

.yleditor .yleditor-settingspane .preference-settings-item-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
	flex: 1 1 auto;
}

.yleditor .yleditor-settingspane .preference-settings-item-title {
	display: block;
	min-width: 0;
	font-size: 0.98rem;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.yleditor .yleditor-settingspane .preference-settings-item-detail {
	display: block;
	max-width: 100%;
	margin-top: 0.1rem;
	font-size: 0.78rem;
	font-variant-numeric: tabular-nums;
	color: rgba(216,228,250,0.72);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.yleditor .yleditor-settingspane .preference-settings-sidebar {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .preference-settings-actions {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .preference-settings-actions .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 40px;
}

.yleditor .yleditor-settingspane .preference-settings-actions .btn:focus-visible {
	outline: 2px solid rgba(170,204,255,0.92);
	outline-offset: 2px;
}

.yleditor .yleditor-settingspane .preference-settings-item-button:disabled,
.yleditor .yleditor-settingspane .preference-settings-polygon-button:disabled {
	cursor: wait;
}

.yleditor .yleditor-settingspane .preference-settings-note {
	font-size: 0.88rem;
	line-height: 1.55;
	color: rgba(232,239,255,0.82);
}

.yleditor .yleditor-settingspane .preference-settings-add-note {
	margin-top: 0.95rem;
	font-size: 0.88rem;
	line-height: 1.5;
	color: rgba(232,239,255,0.82);
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .preference-settings-color-picker {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
	border: 0;
	padding: 0;
	margin: 0;
}

.yleditor .yleditor-settingspane .template-settings-grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.2fr);
	gap: 1.2rem;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .template-settings-note {
	margin-bottom: 0.95rem;
	font-size: 0.88rem;
	line-height: 1.5;
	color: rgba(232,239,255,0.82);
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .template-settings-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-bottom: 0.95rem;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .template-settings-move-button {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.yleditor .yleditor-settingspane .template-settings-list {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .template-settings-empty,
.yleditor .yleditor-settingspane .template-settings-empty-state {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 160px;
	padding: 1rem 1.15rem;
	border-radius: 16px;
	border: 1px dashed rgba(150,188,255,0.26);
	background: rgba(11,21,35,0.48);
	color: rgba(232,239,255,0.82);
	text-align: center;
	line-height: 1.55;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .template-settings-empty-state.compact {
	min-height: 0;
	justify-content: flex-start;
	text-align: left;
	padding: 0.85rem 0.95rem;
}

.yleditor .yleditor-settingspane .template-settings-item {
	display: flex;
	align-items: stretch;
	gap: 0.65rem;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .template-settings-item-button {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.85rem 1rem;
	border-radius: 16px;
	border: 1px solid rgba(255,255,255,0.14);
	background: rgba(7,16,29,0.62);
	color: #f8fbff;
	text-decoration: none;
	box-shadow: none;
	text-align: left;
}

.yleditor .yleditor-settingspane .template-settings-item-button:hover,
.yleditor .yleditor-settingspane .template-settings-item.active .template-settings-item-button {
	background: rgba(92,140,214,0.22);
	border-color: rgba(150,188,255,0.38);
	color: #fff;
	text-decoration: none;
}

.yleditor .yleditor-settingspane .template-settings-item-button:focus {
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(120,167,255,0.18);
}

.yleditor .yleditor-settingspane .template-settings-item-index {
	flex: 0 0 auto;
	min-width: 2.2rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(201,219,255,0.76);
	align-self: flex-start;
	padding-top: 0.1rem;
}

.yleditor .yleditor-settingspane .template-settings-item-copy {
	display: flex;
	flex-direction: column;
	gap: 0.22rem;
	min-width: 0;
	flex: 1 1 auto;
}

.yleditor .yleditor-settingspane .template-settings-item-title {
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	word-break: break-word;
}

.yleditor .yleditor-settingspane .template-settings-item-subtitle {
	font-size: 0.84rem;
	line-height: 1.45;
	color: rgba(220,232,255,0.78);
	word-break: break-word;
}

.yleditor .yleditor-settingspane .template-settings-item-handle {
	flex: 0 0 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	border: 1px solid rgba(255,255,255,0.14);
	background: rgba(7,16,29,0.62);
	color: rgba(220,232,255,0.72);
	cursor: grab;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .template-settings-item-handle.disabled,
.yleditor .yleditor-settingspane .template-settings-panel.busy .template-settings-item-handle {
	opacity: 0.45;
	cursor: default;
}

.yleditor .yleditor-settingspane .template-settings-sort-placeholder {
	visibility: visible !important;
	min-height: 74px;
	border-radius: 16px;
	border: 1px dashed rgba(150,188,255,0.4);
	background: rgba(92,140,214,0.12);
	margin-bottom: 0.7rem;
}

.yleditor .yleditor-settingspane .template-settings-field-sort-placeholder {
	visibility: visible !important;
	min-height: 58px;
	border-radius: 14px;
	border: 1px dashed rgba(150,188,255,0.4);
	background: rgba(92,140,214,0.12);
}

.yleditor .yleditor-settingspane .template-settings-detail-shell {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .template-settings-form-shell {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .template-settings-form-select {
	border-radius: 12px;
	border-color: rgba(255,255,255,0.14);
	background: rgba(7,16,29,0.62);
	color: #f8fbff;
	min-height: 40px;
}

.yleditor .yleditor-settingspane .template-settings-form-note {
	margin: 0.1rem 0 0.2rem;
	font-size: 0.88rem;
	line-height: 1.5;
	color: rgba(232,239,255,0.82);
}

.yleditor .yleditor-settingspane .template-settings-form-validation {
	min-height: 1.4rem;
	font-size: 0.84rem;
	font-weight: 600;
	color: #ffb4b4;
}

.yleditor .yleditor-settingspane .template-settings-static-value {
	padding: 0.72rem 0.9rem;
	border-radius: 12px;
	border: 1px solid rgba(255,255,255,0.14);
	background: rgba(7,16,29,0.52);
	color: #f8fbff;
	font-weight: 600;
	word-break: break-word;
}

.yleditor .yleditor-settingspane .template-settings-detail-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
}

.yleditor .yleditor-settingspane .template-settings-detail-title {
	font-size: 1.16rem;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	word-break: break-word;
}

.yleditor .yleditor-settingspane .template-settings-detail-subtitle {
	margin-top: 0.3rem;
	font-size: 0.88rem;
	line-height: 1.5;
	color: rgba(220,232,255,0.8);
	word-break: break-word;
}

.yleditor .yleditor-settingspane .template-settings-type-badge,
.yleditor .yleditor-settingspane .template-settings-field-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.28rem 0.62rem;
	border-radius: 999px;
	background: rgba(255,255,255,0.1);
	color: rgba(245,248,255,0.84);
	font-size: 0.78rem;
	font-weight: 600;
	white-space: nowrap;
}

.yleditor .yleditor-settingspane .template-settings-field-section {
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .template-settings-field-manager {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.yleditor .yleditor-settingspane .template-settings-field-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 0.9rem;
}

.yleditor .yleditor-settingspane .template-settings-field-toolbar-copy {
	display: flex;
	flex-direction: column;
	gap: 0.28rem;
	min-width: 0;
	flex: 1 1 280px;
}

.yleditor .yleditor-settingspane .template-settings-field-toolbar-note {
	font-size: 0.84rem;
	line-height: 1.45;
	color: rgba(220,232,255,0.74);
}

.yleditor .yleditor-settingspane .template-settings-field-language {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	min-width: 200px;
	font-size: 0.82rem;
	font-weight: 600;
	color: rgba(232,239,255,0.84);
}

.yleditor .yleditor-settingspane .template-settings-field-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.yleditor .yleditor-settingspane .template-settings-field-list {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.yleditor .yleditor-settingspane .template-settings-field-row {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	padding: 0.65rem 0.8rem;
	border-radius: 12px;
	border: 1px solid rgba(255,255,255,0.12);
	background: rgba(7,16,29,0.5);
	cursor: pointer;
	transition: border-color 0.18s ease, background 0.18s ease;
}

.yleditor .yleditor-settingspane .template-settings-field-row-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	min-width: 0;
	width: 100%;
}

.yleditor .yleditor-settingspane .template-settings-field-select {
	display: flex;
	align-items: center;
	min-width: 0;
	flex: 1 1 auto;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	text-align: left;
	text-decoration: none;
	box-shadow: none;
}

.yleditor .yleditor-settingspane .template-settings-field-select:hover {
	color: inherit;
	text-decoration: none;
}

.yleditor .yleditor-settingspane .template-settings-field-select:focus {
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(120,167,255,0.18);
}

.yleditor .yleditor-settingspane .template-settings-field-row:hover,
.yleditor .yleditor-settingspane .template-settings-field-row.active {
	border-color: rgba(150,188,255,0.34);
	background: rgba(92,140,214,0.18);
}

.yleditor .yleditor-settingspane .template-settings-field-copy {
	min-width: 0;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	gap: 0.08rem;
}

.yleditor .yleditor-settingspane .template-settings-field-label {
	font-size: 0.92rem;
	font-weight: 600;
	color: #f8fbff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.yleditor .yleditor-settingspane .template-settings-field-key {
	font-size: 0.78rem;
	line-height: 1.3;
	color: rgba(220,232,255,0.72);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.yleditor .yleditor-settingspane .template-settings-field-handle {
	flex: 0 0 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: auto;
	height: 34px;
	border-radius: 12px;
	border: 1px solid rgba(255,255,255,0.12);
	background: rgba(7,16,29,0.46);
	color: rgba(220,232,255,0.72);
	cursor: grab;
}

.yleditor .yleditor-settingspane .template-settings-inline-editor {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 0.55rem;
	padding-top: 0.15rem;
	border-top: 1px solid rgba(255,255,255,0.09);
}

.yleditor .yleditor-settingspane .template-settings-inline-editor-field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	flex: 1 1 240px;
	margin: 0;
	font-size: 0.8rem;
	font-weight: 600;
	color: rgba(232,239,255,0.84);
}

.yleditor .yleditor-settingspane .template-settings-inline-editor-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 0.5rem;
}

.yleditor .yleditor-settingspane .template-settings-field-handle.disabled,
.yleditor .yleditor-settingspane .template-settings-panel.busy .template-settings-field-handle {
	opacity: 0.45;
	cursor: default;
}

.yleditor .yleditor-settingspane .template-settings-field-detail {
	display: flex;
	flex-direction: column;
	gap: 0.95rem;
	padding: 0.95rem;
	border-radius: 16px;
	border: 1px solid rgba(255,255,255,0.12);
	background: rgba(7,16,29,0.44);
}

.yleditor .yleditor-settingspane .project-settings-startobject {
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .project-settings-overview .project-settings-startobject {
	margin-bottom: 1rem;
}

.yleditor .yleditor-settingspane .project-settings-startobject-frame {
	padding: 0.8rem;
	border-radius: 18px;
	border: 1px solid rgba(255,255,255,0.14);
	background: rgba(7,16,29,0.62);
	min-height: 148px;
}

.yleditor .yleditor-settingspane .project-settings-startobject-preview {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 132px;
}

.yleditor .yleditor-settingspane .project-settings-startobject-preview .ylquickinfo {
	cursor: pointer;
}

.yleditor .yleditor-settingspane .project-settings-startobject-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 132px;
	padding: 1rem;
	border-radius: 14px;
	border: 1px dashed rgba(150,188,255,0.26);
	color: rgba(232,239,255,0.82);
	text-align: center;
	line-height: 1.55;
	background: rgba(11,21,35,0.48);
}

.yleditor .yleditor-settingspane .project-settings-startobject-note {
	margin-top: 0.8rem;
	font-size: 0.88rem;
	line-height: 1.5;
	color: rgba(232,239,255,0.82);
}

@media (max-width: 991px) {
	.yleditor .yleditor-settingspane .settings-shell {
		grid-template-columns: 1fr;
	}

	.yleditor .yleditor-settingspane .settings-sidebar {
		position: static;
	}

	.yleditor .yleditor-settingspane .project-settings-grid {
		grid-template-columns: 1fr;
	}

	.yleditor .yleditor-settingspane .export-settings-grid {
		grid-template-columns: 1fr;
	}

	.yleditor .yleditor-settingspane .export-settings-import-form,
	.yleditor .yleditor-settingspane .export-settings-import-results {
		grid-template-columns: 1fr;
	}

	.yleditor .yleditor-settingspane .preference-settings-manager {
		grid-template-columns: 1fr;
	}

	.yleditor .yleditor-settingspane .preference-settings-library-shell {
		grid-template-columns: 1fr;
	}

	.yleditor .yleditor-settingspane .template-settings-grid {
		grid-template-columns: 1fr;
	}

	.yleditor .yleditor-settingspane .template-settings-field-toolbar {
		align-items: stretch;
	}

	.yleditor .yleditor-settingspane .template-settings-field-language {
		min-width: 0;
		width: 100%;
	}

	.yleditor .yleditor-settingspane .project-settings-language-manager {
		grid-template-columns: 1fr;
	}

	.yleditor .yleditor-settingspane .project-settings-language-controls {
		flex-direction: row;
		justify-content: flex-end;
	}

	.yleditor .yleditor-settingspane .template-settings-detail-header,
	.yleditor .yleditor-settingspane .template-settings-field-row {
		flex-direction: column;
	}
}

.yleditor .yleditor-projectspane .projects-busy-notice {
	min-height: 1.25rem;
	font-size: 0.85rem;
	color: rgba(231,239,255,0.76);
	transition: opacity 0.2s ease;
	opacity: 0;
}

.yleditor .yleditor-projectspane.busy .projects-busy-notice {
	opacity: 1;
}

.yleditor .yleditor-projectspane .projects-empty {
	margin: 1.25rem 0 0;
	background: rgba(255,255,255,0.9);
	border: 0;
	box-shadow: 0 16px 30px rgba(0,0,0,0.16);
}

.yleditor .yleditor-projectspane .projects-empty.projects-load-error {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	color: #3d3100;
	background: rgba(255,244,194,0.96);
}

.yleditor .yleditor-projectspane .projects-load-error-content {
	display: flex;
	align-items: flex-start;
	gap: 0.8rem;
	min-width: 0;
}

.yleditor .yleditor-projectspane .projects-load-error-content > i {
	margin-top: 0.2rem;
	font-size: 1.15rem;
}

.yleditor .yleditor-projectspane .projects-load-error-content strong {
	display: block;
	margin-bottom: 0.2rem;
}

.yleditor .yleditor-projectspane .projects-load-error-content p {
	margin: 0;
}

.yleditor .yleditor-projectspane .projects-retry-button {
	flex: 0 0 auto;
}

@media (max-width: 575.98px) {
	.yleditor .yleditor-projectspane .projects-empty.projects-load-error {
		align-items: stretch;
		flex-direction: column;
	}

	.yleditor .yleditor-projectspane .projects-retry-button {
		align-self: flex-start;
	}
}

.yleditor .yleditor-projectspane .projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1rem;
	margin-top: 1.25rem;
	padding-bottom: 1rem;
}

.yleditor .yleditor-projectspane .project-card {
	display: flex;
	flex-direction: column;
	gap: 0.95rem;
	min-height: 250px;
	padding: 1.15rem 1.15rem 1.1rem;
	border-radius: 18px;
	border: 1px solid rgba(255,255,255,0.12);
	background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(236,242,255,0.9));
	box-shadow: 0 18px 30px rgba(11,20,34,0.18);
	color: #122033;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.yleditor .yleditor-projectspane .project-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 22px 34px rgba(11,20,34,0.22);
}

.yleditor .yleditor-projectspane .project-card.selected {
	border-color: rgba(65,105,170,0.8);
	box-shadow: 0 0 0 3px rgba(65,105,170,0.18), 0 22px 34px rgba(11,20,34,0.2);
}

.yleditor .yleditor-projectspane .project-card.active {
	background: linear-gradient(180deg, rgba(225,240,228,0.98), rgba(243,248,244,0.94));
	border-color: rgba(54,121,74,0.42);
}

.yleditor .yleditor-projectspane .project-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.yleditor .yleditor-projectspane .project-card-header .badge {
	font-size: 0.72rem;
	padding: 0.35rem 0.55rem;
	letter-spacing: 0.03em;
}

.yleditor .yleditor-projectspane .project-card-header .project-id {
	font-weight: 700;
	color: #5a6e8c;
	font-size: 0.84rem;
	letter-spacing: 0.08em;
}

.yleditor .yleditor-projectspane .project-card-title {
	font-size: 1.28rem;
	line-height: 1.2;
	margin: 0;
	min-height: 3rem;
	font-weight: 700;
}

.yleditor .yleditor-projectspane .project-card-meta {
	display: grid;
	gap: 0.45rem;
	font-size: 0.9rem;
	color: #4f617b;
}

.yleditor .yleditor-projectspane .project-card-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	align-items: center;
}

.yleditor .yleditor-projectspane .project-language-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
}

.yleditor .yleditor-projectspane .project-role-badge,
.yleditor .yleditor-projectspane .project-language-badge {
	font-size: 0.74rem;
	font-weight: 600;
	padding: 0.36rem 0.5rem;
	border-radius: 999px;
	border: 1px solid transparent;
}

.yleditor .yleditor-projectspane .project-role-badge.role-admin {
	background: rgba(173, 42, 42, 0.12);
	color: #8f1f1f;
	border-color: rgba(173, 42, 42, 0.22);
}

.yleditor .yleditor-projectspane .project-role-badge.role-user {
	background: rgba(49, 109, 196, 0.12);
	color: #1e519d;
	border-color: rgba(49, 109, 196, 0.2);
}

.yleditor .yleditor-projectspane .project-role-badge.role-guest,
.yleditor .yleditor-projectspane .project-role-badge.role-unknown {
	background: rgba(83, 97, 118, 0.12);
	color: #536176;
	border-color: rgba(83, 97, 118, 0.18);
}

.yleditor .yleditor-projectspane .project-language-badge {
	background: rgba(219, 229, 247, 0.85);
	color: #42526b;
	border-color: rgba(90, 110, 140, 0.14);
}

.yleditor .yleditor-projectspane .project-language-badge.default-language {
	background: rgba(65, 105, 170, 0.16);
	color: #244d8f;
	border-color: rgba(65, 105, 170, 0.28);
	box-shadow: inset 0 0 0 1px rgba(65, 105, 170, 0.12);
}

.yleditor .yleditor-projectspane .project-storage-label {
	font-weight: 600;
	color: #485d79;
}

.yleditor .yleditor-projectspane .project-storage-progress {
	width: 100%;
	height: 0.46rem;
	border-radius: 999px;
	overflow: hidden;
	background: rgba(65, 105, 170, 0.14);
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.08);
}

.yleditor .yleditor-projectspane .project-storage-progress-bar {
	height: 100%;
	border-radius: 999px;
	background: linear-gradient(90deg, #4a7bc3 0%, #6ba1ee 100%);
	transition: width 0.2s ease;
}

.yleditor .yleditor-projectspane .project-card-actions {
	margin-top: auto;
	display: flex;
	justify-content: flex-start;
}

.yleditor .yleditor-projectspane .project-open-button {
	align-self: flex-start;
	padding-left: 0.9rem;
	padding-right: 0.9rem;
	font-weight: 600;
}

.yleditor .yleditor-projectspane.busy .project-card {
	pointer-events: none;
	opacity: 0.72;
}

.yleditor .yleditor-previewpane .toolbar-area {
	min-height: 46px;
	gap: 0.7rem;
}

.yleditor .yleditor-previewpane .preview-toolbar-context {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	min-width: 0;
	color: rgba(245,248,255,0.88);
	font-size: 0.88rem;
	font-weight: 600;
}

.yleditor .yleditor-previewpane .preview-project-context {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.yleditor .yleditor-previewpane .preview-runtime-status {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	margin-left: auto;
	padding: 0.2rem 0.65rem;
	border: 1px solid rgba(255,255,255,0.16);
	border-radius: 999px;
	background: rgba(255,255,255,0.08);
	color: rgba(247,249,255,0.88);
	font-size: 0.78rem;
	font-weight: 700;
}

.yleditor .yleditor-previewpane .preview-runtime-status[data-state="ready"] {
	border-color: rgba(126,224,171,0.4);
	background: rgba(36,143,85,0.26);
	color: #d8ffe8;
}

.yleditor .yleditor-previewpane .preview-runtime-status[data-state="error"],
.yleditor .yleditor-previewpane .preview-runtime-status[data-state="missing-token"] {
	border-color: rgba(255,178,119,0.42);
	background: rgba(164,72,39,0.28);
	color: #ffe7d2;
}

.yleditor .yleditor-previewpane .preview-stage {
	position: absolute;
	top: 46px;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(145deg, rgba(15,28,47,0.96), rgba(45,82,132,0.92));
}

.yleditor .yleditor-previewpane .preview-stage > .preview-frame,
.yleditor .yleditor-previewpane .preview-stage > .preview-notice {
	top: 7px !important;
	left: 7px !important;
	width: calc(100% - 15px) !important;
	height: calc(100% - 15px) !important;
}

.yleditor .yleditor-previewpane iframe.preview-frame {
	border: none;
	background: #cccccc;
}

.yleditor .yleditor-previewpane .preview-notice {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: clamp(1rem, 4vw, 3rem);
	border: 0;
	background: transparent;
	box-shadow: none;
}

.yleditor .yleditor-previewpane .preview-state-card {
	width: min(620px, 100%);
	box-sizing: border-box;
	padding: clamp(1.4rem, 3vw, 2.4rem);
	border: 1px solid rgba(255,255,255,0.17);
	border-radius: 22px;
	background: linear-gradient(145deg, rgba(19,36,61,0.96), rgba(40,75,121,0.94));
	box-shadow: 0 22px 54px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.09);
	color: #f6f9ff;
	text-align: center;
}

.yleditor .yleditor-previewpane .preview-state-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	margin-bottom: 1rem;
	border-radius: 18px;
	background: rgba(138,182,255,0.16);
	color: #cfe3ff;
	font-size: 1.55rem;
}

.yleditor .yleditor-previewpane[data-preview-state="error"] .preview-state-icon,
.yleditor .yleditor-previewpane[data-preview-state="missing-token"] .preview-state-icon {
	background: rgba(255,157,94,0.16);
	color: #ffd5b4;
}

.yleditor .yleditor-previewpane .preview-state-title {
	margin: 0 0 0.65rem;
	font-size: clamp(1.35rem, 2.5vw, 1.9rem);
	font-weight: 700;
}

.yleditor .yleditor-previewpane .preview-state-detail {
	max-width: 500px;
	margin: 0 auto;
	color: rgba(229,238,255,0.82);
	font-size: 0.96rem;
	line-height: 1.6;
}

.yleditor .yleditor-previewpane .preview-state-actions {
	display: flex;
	justify-content: center;
	gap: 0.65rem;
	flex-wrap: wrap;
	margin-top: 1.25rem;
}

@media (max-width: 680px) {
	.yleditor .yleditor-previewpane .preview-toolbar-context {
		display: none;
	}

	.yleditor .yleditor-previewpane .preview-runtime-status {
		max-width: 8rem;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
}

/* Edit Perspective */

.yleditor .yleditor-editpane {
	padding-top: 0px;
	padding-bottom: 44px;
}

/* Task Bar */

.yleditor .yleditor-editpane .taskbar-pane {
	bottom: 0;
	position: absolute;
	width: 100%;
}
.yleditor .yleditor-editpane .taskbar-pane nav.taskbar-area {
	z-index: 200;
	padding-left: 0.5rem;
/*	border-top: 2px solid #333;
	padding-top: 2px;
	padding-bottom: 4px;
*/
}
.yleditor button.yendaui-action {
	font-size: 16px;
	padding-top: 0.0625rem;
	padding-bottom: 0.0625rem;
}

.yleditor .yleditor-editpane .taskbar-pane .editor-tasklist-wrapper {
	position: relative;
	overflow: hidden;
}
.yleditor .yleditor-editpane .taskbar-pane ul.editor-tasklist {
	overflow: auto;
	scrollbar-width: none;
}
.yleditor .yleditor-editpane .taskbar-pane li.taskbar-item {
	margin-left: 6px;
	font-size: 12px;
	text-align: left;
	min-width: 70px;
	max-width: 120px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	position: relative;
}
.yleditor hr.taskbar-divider {
	border-right: 1px solid #999;
	width: 2px;
	height: 1rem;
	display: block;
	margin: 0;
	margin-left: 0.25rem;
	padding: 0;
}
.yleditor .yleditor-editpane .taskbar-pane li.taskbar-item > .task-close-widget {
	position: absolute;
	color: #FF5F53;
	text-shadow: 0px 0px 1px #E34236;
	display: none;
}
.yleditor .yleditor-editpane .taskbar-pane li.taskbar-item:hover > .task-close-widget {
	display: block;
}
.yleditor .yleditor-editpane .taskbar-pane li.taskbar-item:hover .task-type-icon {
	visibility: hidden;
}

/* Login Dialog */
.yleditor-logindialog {
	background: url('../img/login-backdrop.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.yleditor-logindialog .modal-dialog {
	position: absolute;
	top: 50%;
	right: clamp(1.5rem, 11vw, 12rem);
	width: min(410px, calc(100% - 2rem));
	max-width: 410px;
	margin: 0;
	transform: translateY(-50%);
}
.yleditor-logindialog.fade .modal-dialog,
.yleditor-logindialog.show .modal-dialog {
	transform: translateY(-50%);
}
.yleditor-logindialog .modal-content {
	overflow: hidden;
	border: 1px solid rgba(255,255,255,0.34);
	border-radius: 22px;
	background: rgba(250,252,255,0.97);
	box-shadow: 0 28px 70px rgba(0,0,0,0.46);
}
.yleditor-logindialog .login-brand-header {
	position: relative;
	justify-content: center;
	padding: 1.35rem 1.5rem 1.1rem;
	border: 0;
	background: #fff;
}
.yleditor-logindialog .login-brand-header::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 4px;
	background: linear-gradient(90deg, #8ed7f4, #00a7e1 52%, #4169aa);
	content: '';
}
.yleditor-logindialog .login-brand-header img {
	width: min(250px, 86%);
	height: auto;
}
.yleditor-logindialog .modal-body {
	padding: 1.55rem 1.75rem 1.4rem;
}
.yleditor-logindialog .login-kicker {
	margin-bottom: 0.35rem;
	color: #4169aa;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}
.yleditor-logindialog .login-title {
	margin: 0;
	color: #14243a;
	font-size: 1.65rem;
	font-weight: 750;
	line-height: 1.2;
}
.yleditor-logindialog .login-description {
	margin: 0.55rem 0 1.25rem;
	color: #5a6c84;
	font-size: 0.92rem;
	line-height: 1.5;
}
.yleditor-logindialog .login-error-notice {
	margin-bottom: 1rem;
	padding: 0.7rem 0.8rem;
	border-radius: 10px;
	font-size: 0.84rem;
	line-height: 1.45;
}
.yleditor-logindialog .login-field-group {
	margin-bottom: 1rem;
}
.yleditor-logindialog .login-field-group label {
	margin-bottom: 0.38rem;
	color: #283b55;
	font-size: 0.8rem;
	font-weight: 700;
}
.yleditor-logindialog .login-field-group .input-group-text {
	min-width: 43px;
	justify-content: center;
	border-color: #cbd6e6;
	background: #edf2f9;
	color: #506886;
}
.yleditor-logindialog .login-field-group .form-control,
.yleditor-logindialog .login-password-toggle {
	height: 43px;
	border-color: #cbd6e6;
}
.yleditor-logindialog .login-field-group .form-control:focus {
	border-color: #4169aa;
	box-shadow: 0 0 0 0.2rem rgba(65,105,170,0.16);
}
.yleditor-logindialog .login-password-toggle {
	min-width: 44px;
	color: #506886;
	background: #f8fafc;
}
.yleditor-logindialog .login-progress {
	min-height: 1.35rem;
	margin: -0.1rem 0 0.45rem;
	color: #526a88;
	font-size: 0.79rem;
}
.yleditor-logindialog .login-submit {
	min-height: 44px;
	border-radius: 11px;
	background: #4169aa;
	border-color: #4169aa;
	font-weight: 700;
}
.yleditor-logindialog .login-submit:not(:disabled):hover,
.yleditor-logindialog .login-submit:not(:disabled):focus {
	background: #35598f;
	border-color: #35598f;
}
.yleditor-logindialog .login-passkey-separator {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0.85rem 0;
}
.yleditor-logindialog .login-passkey-separator::before,
.yleditor-logindialog .login-passkey-separator::after {
	flex: 1;
	height: 1px;
	background: #d7dfeb;
	content: '';
}
.yleditor-logindialog .login-passkey-separator span::after {
	color: #78889d;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	content: 'Passkey';
}
.yleditor-logindialog .login-passkey {
	min-height: 42px;
	border-color: #8ba6ca;
	border-radius: 11px;
	color: #355d94;
	font-weight: 700;
}
.yleditor-logindialog .login-passkey:not(:disabled):hover,
.yleditor-logindialog .login-passkey:not(:disabled):focus {
	border-color: #4169aa;
	background: #edf3fb;
	color: #294d84;
}
.yleditor-logindialog .login-recovery,
.yleditor-logindialog .recovery-return,
.yleditor-logindialog .login-mfa-cancel {
	margin-top: 0.5rem;
	padding: 0.45rem;
	color: #4169aa;
	font-size: 0.82rem;
	font-weight: 650;
	text-decoration: none;
}
.yleditor-logindialog .login-recovery:hover,
.yleditor-logindialog .login-recovery:focus,
.yleditor-logindialog .recovery-return:hover,
.yleditor-logindialog .recovery-return:focus,
.yleditor-logindialog .login-mfa-cancel:hover,
.yleditor-logindialog .login-mfa-cancel:focus {
	color: #294d84;
	text-decoration: underline;
}
.yleditor-logindialog .login-mfa-help {
	color: #64768e;
	font-size: 0.77rem;
	line-height: 1.4;
}

.yenda-mfa-dialog .modal-content {
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 18px;
	background: #f7f9fc;
	color: #1f3047;
	box-shadow: 0 24px 70px rgba(0,0,0,0.38);
}
.yenda-mfa-dialog .modal-header {
	border-bottom-color: #dce4ef;
	background: linear-gradient(135deg, #1b365c, #4169aa);
	color: #fff;
}
.yenda-mfa-dialog .mfa-kicker {
	margin-bottom: 0.25rem;
	color: #cfe2ff;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}
.yenda-mfa-dialog .mfa-description { color: #53667f; line-height: 1.55; }
.yenda-mfa-dialog .mfa-setup-layout {
	display: grid;
	grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
	align-items: center;
	gap: 1.25rem;
}
.yenda-mfa-dialog .mfa-qr {
	display: block;
	width: min(240px, 100%);
	height: auto;
	border: 1px solid #d6deea;
	border-radius: 12px;
	background: #fff;
}
.yenda-mfa-dialog .mfa-secret-wrap {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0.75rem 0;
}
.yenda-mfa-dialog .mfa-secret {
	overflow-wrap: anywhere;
	padding: 0.55rem 0.65rem;
	border-radius: 8px;
	background: #e9eef6;
	color: #1d385e;
	font-size: 0.94rem;
	letter-spacing: 0.08em;
}
.yenda-mfa-dialog .mfa-recovery-codes {
	columns: 2;
	padding: 1rem;
	border: 1px solid #cbd6e5;
	border-radius: 12px;
	background: #fff;
	color: #1d385e;
	font-size: 1rem;
	line-height: 1.8;
	letter-spacing: 0.08em;
	user-select: all;
}
.yenda-mfa-dialog .mfa-spinner { pointer-events: none; }

.yenda-passkey-dialog .modal-content {
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 18px;
	background: #f7f9fc;
	color: #1f3047;
	box-shadow: 0 24px 70px rgba(0,0,0,0.38);
}
.yenda-passkey-dialog .modal-header {
	border-bottom-color: #dce4ef;
	background: linear-gradient(135deg, #1b365c, #4169aa);
	color: #fff;
}
.yenda-passkey-dialog .passkey-kicker {
	margin-bottom: 0.25rem;
	color: #cfe2ff;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}
.yenda-passkey-dialog .passkey-description,
.yenda-passkey-dialog .passkey-action-description {
	color: #53667f;
	line-height: 1.5;
}
.yenda-passkey-dialog .passkey-list {
	display: grid;
	gap: 0.65rem;
	margin-bottom: 1rem;
}
.yenda-passkey-dialog .passkey-item {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem;
	border: 1px solid #d6dfeb;
	border-radius: 12px;
	background: #fff;
}
.yenda-passkey-dialog .passkey-item-icon {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 11px;
	background: #e8f0fb;
	color: #4169aa;
}
.yenda-passkey-dialog .passkey-item-copy { min-width: 0; }
.yenda-passkey-dialog .passkey-item-copy strong,
.yenda-passkey-dialog .passkey-item-copy span { display: block; }
.yenda-passkey-dialog .passkey-item-copy span {
	margin-top: 0.18rem;
	color: #69798e;
	font-size: 0.76rem;
}
.yenda-passkey-dialog .passkey-empty {
	padding: 1rem;
	border: 1px dashed #b9c7da;
	border-radius: 12px;
	background: #eef3f9;
	color: #586c86;
	text-align: center;
}
.yenda-passkey-dialog .passkey-spinner { pointer-events: none; }

@media (max-width: 767.98px) {
	.yleditor .yleditor-userpane .user-mfa-card {
		grid-template-columns: auto minmax(0, 1fr);
	}
	.yleditor .yleditor-userpane .user-mfa-actions {
		grid-column: 1 / -1;
		justify-content: flex-start;
	}
	.yenda-mfa-dialog .mfa-setup-layout { grid-template-columns: 1fr; }
	.yenda-mfa-dialog .mfa-qr { margin: 0 auto; }
	.yenda-mfa-dialog .mfa-recovery-codes { columns: 1; }
}
.yleditor-logindialog .login-client-version {
	position: absolute;
	right: 1.15rem;
	bottom: 0.48rem;
	color: #78869a;
	font-size: 0.64rem;
	font-variant-numeric: tabular-nums;
	font-weight: 600;
	letter-spacing: 0.025em;
	line-height: 1;
	pointer-events: none;
}
.yleditor-logindialog > .login-page-language-switcher {
	position: fixed;
	top: calc(1.25rem + env(safe-area-inset-top, 0px));
	right: calc(1.25rem + env(safe-area-inset-right, 0px));
	z-index: 2;
	background: rgba(255,255,255,0.92);
	box-shadow: 0 6px 20px rgba(16,39,70,0.18);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}
.yleditor-logindialog .login-working-icon {
	display: none;
}
.yleditor-logindialog.working .login-icon {
	display: none;
}
.yleditor-logindialog.working .login-working-icon {
	display: inline-block;
}
.yleditor-recoverydialog .recovery-working-icon {
	display: none;
}
.yleditor-recoverydialog.working .recovery-submit-icon {
	display: none;
}
.yleditor-recoverydialog.working .recovery-working-icon {
	display: inline-block;
}
.yleditor-logindialog.working .login-form {
	cursor: wait;
}
.yleditor-recoverydialog.working .recovery-form {
	cursor: wait;
}
.yleditor-recoverydialog .recovery-reset-fields {
	display: none;
}
.yleditor-recoverydialog.recovery-mode-reset .recovery-request-fields {
	display: none;
}
.yleditor-recoverydialog.recovery-mode-reset .recovery-reset-fields {
	display: block;
}
.yleditor-recoverydialog .recovery-notice {
	border-radius: 10px;
	font-size: 0.84rem;
	line-height: 1.45;
}
.yleditor-recoverydialog.recovery-complete .recovery-fields,
.yleditor-recoverydialog.recovery-complete .recovery-progress,
.yleditor-recoverydialog.recovery-complete .recovery-submit {
	display: none;
}

@media (max-width: 767.98px) {
	.yleditor-logindialog .modal-dialog {
		top: 50%;
		right: auto;
		left: 50%;
		width: min(410px, calc(100% - 1.5rem));
		transform: translate(-50%, -50%);
	}

	.yleditor-logindialog.fade .modal-dialog,
	.yleditor-logindialog.show .modal-dialog {
		transform: translate(-50%, -50%);
	}

	.yleditor-logindialog .modal-body {
		padding: 1.35rem 1.25rem 1.2rem;
	}

	.yleditor-logindialog > .login-page-language-switcher {
		top: calc(0.75rem + env(safe-area-inset-top, 0px));
		right: calc(0.75rem + env(safe-area-inset-right, 0px));
	}

	.yleditor .yleditor-projectspane {
		padding: 1.25rem 1rem 1.5rem;
	}

	.yleditor .yleditor-projectspane .projects-title {
		font-size: 1.9rem;
	}

	.yleditor .yleditor-projectspane .projects-current-user {
		border-radius: 14px;
	}

	.yleditor .yleditor-projectspane .projects-grid {
		grid-template-columns: 1fr;
	}

	.yleditor .yleditor-userpane {
		padding: 1.25rem 1.25rem 1.5rem;
	}

	.yleditor .yleditor-userpane .user-title {
		font-size: 1.65rem;
	}

	.yleditor .yleditor-userpane .user-form-grid,
	.yleditor .yleditor-userpane .user-password-grid {
		grid-template-columns: 1fr;
	}
}

/* Component Windows */

.ylcomponent-frame {
	top: 50px;
	left: 50px;
	border-radius: 4px;
	position: absolute !important;
	border: 1px solid #999999;
	background-color: #EEEEEE;
	box-shadow: 2px 2px 2px 0px #666;
	min-width: 125px;
	min-height: 40px;
	transform-origin: initial;
}

.ylcomponent-frame .active {
    z-index: 0;
}

.ylcomponent-frame.selected {
	box-shadow: 5px 5px 10px 1px #333;
	border-color: #666;
	z-index: 100 !important;
}

.ylcomponent-frame.maximized {
	top: 0px !important;
	left: 0px !important;
	width: calc(100% - 2px) !important;
	height: calc(100% - 46px) !important;
}
.ylcomponent-frame.minimized {
	pointer-events: none;
	opacity: 0;
	transition: opacity 1s, top 0.6s, left 0.1s, transform 0.6s 0s cubic-bezier(.1, 1.2, .3, 1);
	transform: scale(0,0);
	left: 0px !important;
	top: 100% !important;
}

.ylcomponent-frame > .frame-titlebar {
	position: relative;
	font-family: sans-serif;
	text-align: center;
	color: #808080;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	word-wrap: break-word;
	overflow: hidden;
	width: 100%;
	height: 22px;
	border-top: 1px solid #F3F3F3;
	border-bottom: 1px solid #B9B9B9;
	text-shadow: 1px 1px 2px #C4C4C4;
	background: #F6F6F6;
	
}
.ylcomponent-frame > .frame-titlebar > .frame-title {
	display: block;
	padding: 0 30px;
	line-height: 21px;
	vertical-align: top;
	cursor: default;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.ylcomponent-frame.selected > .frame-titlebar {
	color: black;
	background: linear-gradient(to bottom, #EBEBEB 0%,#D4D4D4 100%);	
}
.ylcomponent-frame > .frame-titlebar > .frame-widgets {
	position: absolute;
	cursor: pointer;
	font-size: 14px;
	z-index: 10;
	left: 8px;
	top: 1px;
	color: #DDDDDD;
}
.ylcomponent-frame > .frame-titlebar > .frame-widgets > .frame-widget {
	float: left;
	margin-right: 5px;
}
.ylcomponent-frame > .frame-titlebar > .frame-widgets > .frame-widget {
	text-shadow: 0px 0px 1px #AAAAAA;
	
}

.ylcomponent-frame > .frame-titlebar > .frame-widgets > .frame-widget.frame-metadata {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 14px;
	margin-top: 1px;
	margin-left: 1px;
	font-size: 11px;
	color: #bcc6d6;
	text-shadow: none;
	opacity: 0.25;
	transition: opacity 0.15s ease, color 0.15s ease;
}

.ylcomponent-frame.selected > .frame-titlebar > .frame-widgets > .frame-widget.frame-metadata,
.ylcomponent-frame > .frame-titlebar > .frame-widgets > .frame-widget.frame-metadata:hover {
	opacity: 1;
	color: #4a7bc3;
}

.ylcomponent-frame > .frame-titlebar > .frame-widgets > .frame-widget.frame-metadata.metadata-unavailable {
	visibility: hidden;
	pointer-events: none;
	width: 0;
	margin-right: 0;
	margin-left: 0;
}

.ylcomponent-frame > .frame-titlebar > .frame-widgets > .frame-widget.frame-metadata.metadata-active {
	color: #2b6ec7;
	opacity: 1;
}

.ylcomponent-frame > .frame-titlebar > .frame-widgets >.frame-close:hover i:before {
	content: "\f057";
}
.ylcomponent-frame.selected > .frame-titlebar > .frame-widgets > .frame-close, .ylcomponent-frame > .frame-titlebar > .frame-widgets > .frame-close:hover {
	color: #FF5F53;
	text-shadow: 0px 0px 1px #E34236;
}

.ylcomponent-frame > .frame-titlebar > .frame-widgets >.frame-minimize:hover i:before {
	content: "\f056";
}
.ylcomponent-frame.selected > .frame-titlebar > .frame-widgets > .frame-minimize, .ylcomponent-frame > .frame-titlebar > .frame-widgets > .frame-minimize:hover {
	color: #FFC12E;
	text-shadow: 0px 0px 1px #F1B32E;
}

.ylcomponent-frame > .frame-titlebar > .frame-widgets >.frame-maximize:hover i:before {
	content: "\f055";
}
.ylcomponent-frame.selected > .frame-titlebar > .frame-widgets > .frame-maximize, .ylcomponent-frame > .frame-titlebar > .frame-widgets > .frame-maximize:hover {
	color: #29CE42;
	text-shadow: 0px 0px 1px #26BF39;
}
/* Context help is a quiet utility at the title bar's right edge, not another
 * traffic-light action. It remains fully keyboard accessible. */
.ylcomponent-frame > .frame-titlebar > .frame-help {
	position: absolute;
	right: 8px;
	top: 3px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 15px;
	height: 15px;
	margin-top: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #77889f;
	font-size: 13px;
	line-height: 1;
	text-shadow: none;
	opacity: 0.72;
	cursor: help;
	transition: color 0.14s ease, background-color 0.14s ease, opacity 0.14s ease;
}

.ylcomponent-frame > .frame-titlebar > .frame-help:hover,
.ylcomponent-frame > .frame-titlebar > .frame-help:focus-visible,
.ylcomponent-frame.selected > .frame-titlebar > .frame-help {
	background: rgba(65,105,170,0.12);
	color: #4169aa;
	opacity: 1;
}

.ylcomponent-frame > .frame-titlebar > .frame-help:focus-visible {
	outline: 2px solid rgba(65,105,170,0.55);
	outline-offset: 1px;
}

.ylcomponent-frame > .frame-titlebar > .frame-help[hidden] {
	display: none;
}
.ylcomponent-frame > .frame-content {
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
	right: 0px;
	margin-top: 22px;
	margin-bottom: 17px;
	display: grid;
	height: calc(100% - 39px);
        grid-template-columns: 1fr 8px 1fr 8px 1fr;
	overflow: hidden;
}

.ylcomponent-frame > .frame-footer {
	position: absolute;
	bottom: 0px;
	width: 100%;
	height: 17px;
	background: #F6F6F6;
	border-top: 1px solid #B9B9B9;
	font-size: 12px;
	text-align: center;
	line-height: 14px;
}

.ylcomponent-frame.selected > .frame-footer {
	background: #D3D3D3;
}

.ylcomponent-frame > .frame-content > .frame-panel {
	border: 1px solid #999999;
	position: relative;
	overflow: hidden;
}

.ylcomponent-frame > .frame-content > .frame-panel.metadata-collapsed,
.ylcomponent-frame > .frame-content > .frame-gutter.metadata-collapsed {
	visibility: hidden;
	pointer-events: none;
	border-width: 0;
	overflow: hidden;
}

.ylcomponent-frame > .frame-content > .frame-gutter {
	width: 8px;
	cursor: ew-resize;
	height: 100%;
	font-size: 6px;
}
.ylcomponent-frame > .frame-content > .frame-gutter > .frame-gutter-handle {
	position: absolute;
	top: 50%;
	padding-left: 1px;
}
.ylcomponent-frame > .frame-content .frame-view {
	height: 100%;
}

.ylcomponent-frame > .frame-content .frame-view-titlebar {
	border-top: 1px solid #FEFEFE;
	border-bottom: 1px solid #808080;
	height: 22px;
	font-family: sans-serif;
	font-size: 14px;
	line-height: 20px;
	padding-left: 10px;
	white-space: nowrap;
	overflow: hidden;
}
.ylcomponent-frame > .frame-content .frame-view > .frame-view-content {
	position: absolute;
	overflow: auto;
	margin-top: 23px;
	margin-bottom: 36px;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	height: auto;
}

.ylcomponent-frame > .frame-content .frame-view > .frame-view-content.ylbrowser-groupcontents-drop-zone-active {
	background-color: #e6f0ff;
	outline: 1px solid #6ba3ff;
	outline-offset: -1px;
}

.ylcomponent-frame > .frame-content .frame-view > .frame-view-content.ylbrowser-groupcontents-drop-zone-active > ol.ylcontentslist {
	background-color: #dce9ff;
}
.ylcomponent-frame > .frame-content .frame-view > .frame-view-toolbar {
	position: absolute;
	height: 36px;
	width: 100%;
	bottom: 0px;
	background: #F0F0F0;
	padding-left: 10px;
	padding-top: 7px;
}

.ylcomponent-frame > .frame-content .frame-view > .frame-view-toolbar.ylbrowser-groupcontents-toolbar {
	display: flex;
	align-items: center;
	gap: 6px;
	box-sizing: border-box;
	padding: 6px 10px;
}

.ylcomponent-frame > .frame-content .frame-view > .frame-view-toolbar.ylbrowser-groupcontents-toolbar button.ylbutton {
	float: none;
	margin-right: 0;
	flex: 0 0 24px;
}

.ylcomponent-frame.ylcomponent-projectusersmanager > .frame-content .frame-view > .frame-view-content {
	background: linear-gradient(180deg, #eef4fb 0%, #dde7f3 100%);
	padding: 14px;
	box-sizing: border-box;
	overflow: hidden;
}

.ylcomponent-frame.ylcomponent-projectusersmanager > .frame-content .frame-view > .frame-view-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 6px 10px;
	box-sizing: border-box;
	background: #f7f9fc;
	border-top: 1px solid #d0dae7;
}

.yleditor .yleditor-settingspane .project-users-settings-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1.2rem;
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .project-users-settings-card {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	min-height: 0;
}

.yleditor .yleditor-settingspane .project-users-settings-host {
	min-height: 36rem;
}

.yleditor .yleditor-settingspane .project-users-settings-view {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	gap: 1rem;
}

.yleditor .yleditor-settingspane .project-users-settings-view .frame-view-titlebar {
	display: none;
}

.yleditor .yleditor-settingspane .project-users-settings-view > .frame-view-content {
	position: relative;
	left: auto;
	right: auto;
	top: auto;
	bottom: auto;
	margin: 0;
	height: auto;
	flex: 1 1 auto;
	min-height: 0;
	background: transparent;
	padding: 0;
	box-sizing: border-box;
	overflow: visible;
	border-radius: 0;
}

.yleditor .yleditor-settingspane .project-users-settings-view > .frame-view-toolbar {
	position: relative;
	height: auto;
	width: auto;
	bottom: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.85rem;
	padding: 0;
	box-sizing: border-box;
	background: transparent;
	border-top: 0;
	border-radius: 0;
	order: -1;
}

.yleditor .yleditor-settingspane .project-users-settings-view > .frame-view-toolbar .btn {
	border-radius: 12px;
	border: 1px solid rgba(255,255,255,0.1);
	background: rgba(255,255,255,0.06);
	color: #f4f8ff;
	box-shadow: none;
}

.yleditor .yleditor-settingspane .project-users-settings-view > .frame-view-toolbar .btn:hover,
.yleditor .yleditor-settingspane .project-users-settings-view > .frame-view-toolbar .btn:focus {
	background: rgba(92,140,214,0.18);
	border-color: rgba(150,188,255,0.3);
	color: #fff;
}

.yleditor .yleditor-settingspane .project-users-settings-view > .frame-view-toolbar .btn:focus {
	box-shadow: 0 0 0 0.2rem rgba(120,167,255,0.18);
}

.project-users-manager-surface .project-users-manager-shell {
	display: flex;
	flex-direction: column;
	gap: 16px;
	height: 100%;
	min-height: 0;
}

.project-users-manager-surface .project-users-manager-status {
	padding: 10px 12px;
	border-radius: 12px;
	background: rgba(7,16,29,0.54);
	border: 1px solid rgba(255,255,255,0.1);
	color: rgba(236,243,255,0.88);
	font-size: 13px;
	line-height: 1.45;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.project-users-manager-surface .project-users-add-card,
.project-users-manager-surface .project-users-members-card {
	border-radius: 16px;
	border: 1px solid rgba(255,255,255,0.1);
	background: rgba(7,16,29,0.54);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.project-users-manager-surface .project-users-add-card {
	padding: 16px;
}

.project-users-manager-surface .project-users-members-card {
	display: flex;
	flex-direction: column;
	min-height: 0;
	flex: 1 1 auto;
	overflow: hidden;
}

.project-users-manager-surface .project-users-section-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}

.project-users-manager-surface .project-users-members-card > .project-users-section-heading {
	padding: 16px 16px 12px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

.project-users-manager-surface .project-users-section-heading h3 {
	margin: 0;
	font-size: 15px;
	line-height: 1.35;
	font-weight: 700;
	color: #f4f8ff;
}

.project-users-manager-surface .project-users-section-heading p {
	margin: 4px 0 0;
	max-width: 62rem;
	font-size: 12px;
	line-height: 1.45;
	color: rgba(214,226,247,0.76);
}

.project-users-manager-surface .project-users-privacy-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	flex: 0 0 auto;
	padding: 6px 9px;
	border-radius: 999px;
	border: 1px solid rgba(138,181,245,0.22);
	background: rgba(92,140,214,0.12);
	color: rgba(224,235,255,0.9);
	font-size: 11px;
	font-weight: 650;
}

.project-users-manager-surface .project-users-add-grid {
	display: grid;
	grid-template-columns: minmax(14rem, 1fr) minmax(8rem, 10rem) auto;
	align-items: end;
	gap: 12px;
	margin-top: 14px;
}

.project-users-manager-surface .project-users-search-field,
.project-users-manager-surface .project-users-add-role-field {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.project-users-manager-surface .project-users-search-field > label,
.project-users-manager-surface .project-users-add-role-field > label {
	font-size: 12px;
	font-weight: 700;
	color: rgba(235,242,255,0.92);
}

.project-users-manager-surface .project-users-combobox-wrap {
	position: relative;
}

.project-users-manager-surface .project-users-combobox-wrap > .fa-search {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	color: rgba(173,194,229,0.76);
	pointer-events: none;
}

.project-users-manager-surface .project-users-candidate-search {
	padding-left: 36px;
	padding-right: 38px;
	border-color: rgba(255,255,255,0.14);
	background: rgba(255,255,255,0.95);
	color: #1d2b3d;
}

.project-users-manager-surface .project-users-candidate-search:focus {
	border-color: #78a7ff;
	box-shadow: 0 0 0 0.2rem rgba(120,167,255,0.18);
}

.project-users-manager-surface .project-users-search-spinner {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: #416a9f;
	pointer-events: none;
}

.project-users-manager-surface .project-users-candidate-list {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% - 20px);
	z-index: 20;
	max-height: 17rem;
	overflow: auto;
	padding: 6px;
	border: 1px solid rgba(150,188,255,0.32);
	border-radius: 12px;
	background: #17253a;
	box-shadow: 0 14px 32px rgba(1,7,16,0.42);
}

.project-users-manager-surface .project-users-candidate-option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	padding: 9px 10px;
	border: 1px solid transparent;
	border-radius: 8px;
	background: transparent;
	color: #f4f8ff;
	text-align: left;
}

.project-users-manager-surface .project-users-candidate-option:hover,
.project-users-manager-surface .project-users-candidate-option:focus,
.project-users-manager-surface .project-users-candidate-option.active {
	outline: none;
	border-color: rgba(150,188,255,0.24);
	background: rgba(92,140,214,0.2);
}

.project-users-manager-surface .project-users-candidate-name {
	font-size: 13px;
	font-weight: 700;
}

.project-users-manager-surface .project-users-candidate-username {
	font-size: 12px;
	color: rgba(197,215,245,0.76);
}

.project-users-manager-surface .project-users-search-status {
	margin-top: 8px;
	font-size: 11px;
	line-height: 1.4;
	color: rgba(200,216,244,0.74);
}

.project-users-manager-surface .project-users-add-role,
.project-users-manager-surface .project-users-role-select {
	border-color: rgba(255,255,255,0.14);
}

.project-users-manager-surface .project-users-add-button {
	min-height: 38px;
	padding-inline: 16px;
	border-radius: 10px;
	white-space: nowrap;
}

.project-users-manager-surface .project-users-add-button i,
.project-users-manager-surface .project-users-remove-button i,
.project-users-manager-surface .project-users-manager-toolbar .btn i {
	margin-right: 7px;
}

.project-users-manager-surface .project-users-member-count {
	flex: 0 0 auto;
	background: rgba(255,255,255,0.08);
	color: rgba(229,237,255,0.88);
	border: 1px solid rgba(255,255,255,0.08);
}

.project-users-manager-surface .project-users-table-wrap {
	min-height: 0;
	overflow: auto;
	flex: 1 1 auto;
}

.project-users-manager-surface .project-users-table {
	width: 100%;
	border-collapse: collapse;
	color: #f4f8ff;
}

.project-users-manager-surface .project-users-table th {
	position: sticky;
	top: 0;
	z-index: 2;
	padding: 9px 14px;
	border-bottom: 1px solid rgba(255,255,255,0.09);
	background: #17253a;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: rgba(194,212,245,0.78);
	text-align: left;
}

.project-users-manager-surface .project-users-table td {
	padding: 11px 14px;
	border-bottom: 1px solid rgba(255,255,255,0.07);
	vertical-align: middle;
}

.project-users-manager-surface .project-users-member-row:last-child td {
	border-bottom: 0;
}

.project-users-manager-surface .project-users-member-row:hover td,
.project-users-manager-surface .project-users-member-row.is-current-user td {
	background: rgba(92,140,214,0.08);
}

.project-users-manager-surface .project-users-member-row.is-busy {
	opacity: 0.62;
}

.project-users-manager-surface .project-users-column-person {
	width: 45%;
}

.project-users-manager-surface .project-users-column-role {
	width: 34%;
}

.project-users-manager-surface .project-users-column-action {
	width: 21%;
	text-align: right !important;
}

.project-users-manager-surface .project-users-member-person-layout {
	display: flex;
	align-items: center;
	gap: 11px;
	min-width: 0;
}

.project-users-manager-surface .project-users-member-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
	box-sizing: border-box;
	border-radius: 10px;
	border: 1px solid rgba(138,181,245,0.18);
	background: rgba(92,140,214,0.16);
	color: rgba(211,226,253,0.9);
}

.project-users-manager-surface .project-users-member-avatar.role-admin {
	border-color: rgba(255,215,132,0.4);
	background: rgba(222,166,54,0.2);
	color: #ffe2a3;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 0 0 1px rgba(255,196,76,0.04);
}

.project-users-manager-surface .project-users-member-avatar.role-admin i {
	font-size: 15px;
}

.project-users-manager-surface .project-users-member-avatar.role-guest {
	border-color: rgba(200,212,232,0.3);
	border-style: dashed;
	background: rgba(150,166,190,0.1);
	color: rgba(218,228,244,0.82);
}

.project-users-manager-surface .project-users-member-avatar.role-unknown {
	border-color: rgba(229,151,151,0.32);
	background: rgba(180,83,83,0.1);
	color: rgba(245,215,215,0.86);
}

.project-users-manager-surface .project-users-member-identity,
.project-users-manager-surface .project-users-member-role-layout {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.project-users-manager-surface .project-users-member-name {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
}

.project-users-manager-surface .project-users-self-badge {
	padding: 2px 6px;
	border-radius: 999px;
	background: rgba(92,140,214,0.22);
	color: #dce9ff;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.project-users-manager-surface .project-users-member-username {
	font-size: 11px;
	line-height: 1.35;
	color: rgba(197,215,245,0.7);
}

.project-users-manager-surface .project-users-member-role-layout .project-users-role-select {
	width: min(100%, 14rem);
}

.project-users-manager-surface .project-users-member-action {
	text-align: right;
}

.project-users-manager-surface .project-users-remove-button {
	border-radius: 9px;
	white-space: nowrap;
}

.project-users-manager-surface .project-users-members-empty {
	padding: 26px 18px;
	font-size: 13px;
	line-height: 1.5;
	color: rgba(214,226,247,0.76);
	text-align: center;
}

@media (max-width: 980px) {
	.project-users-manager-surface .project-users-add-grid {
		grid-template-columns: minmax(12rem, 1fr) minmax(8rem, 9rem) auto;
	}
}

@media (max-width: 720px) {
	.project-users-manager-surface .project-users-section-heading,
	.project-users-manager-surface .project-users-add-grid {
		display: flex;
		flex-direction: column;
		align-items: stretch;
	}

	.project-users-manager-surface .project-users-privacy-badge,
	.project-users-manager-surface .project-users-add-button {
		align-self: flex-start;
	}

	.project-users-manager-surface .project-users-table thead {
		display: none;
	}

	.project-users-manager-surface .project-users-table,
	.project-users-manager-surface .project-users-table tbody,
	.project-users-manager-surface .project-users-table tr,
	.project-users-manager-surface .project-users-table td {
		display: block;
		width: 100%;
	}

	.project-users-manager-surface .project-users-member-row {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		padding: 12px 14px;
		border-bottom: 1px solid rgba(255,255,255,0.08);
	}

	.project-users-manager-surface .project-users-table td {
		padding: 6px 0;
		border: 0;
	}

	.project-users-manager-surface .project-users-member-person {
		grid-column: 1 / -1;
	}

	.project-users-manager-surface .project-users-member-role {
		grid-column: 1;
	}

	.project-users-manager-surface .project-users-member-action {
		grid-column: 2;
		align-self: center;
		padding-left: 12px !important;
	}
}

button.ylbutton {
	vertical-align: top;
	width: 24px;
	height: 24px;
	border: none;
	margin: 0;
	padding: 0;
	background: #ADADAD;
	margin-right: 6px;
	float: left;
}
button.ylbutton > div {
	display: none;
	width: 24px;
	height: 24px;
	background: rgba(177,197,225,0.3);
}
button.ylbutton:hover > div {
	display: block;
}
button.ylbutton:disabled:hover > div {
	display: none;
}

button.ylbutton.ylbutton-add {
	background: url('../img/icons/group-add.png');
}
button.ylbutton.ylbutton-add:active {
	background: url('../img/icons/group-add-active.png');
}
button.ylbutton.ylbutton-add:disabled {
	background: url('../img/icons/group-add-disabled.png');
}

button.ylbutton.ylbutton-remove {
	background: url('../img/icons/group-remove.png');
}
button.ylbutton.ylbutton-remove:active {
	background: url('../img/icons/group-remove-active.png');
}
button.ylbutton.ylbutton-remove:disabled {
	background: url('../img/icons/group-remove-disabled.png');
}

button.ylbutton.ylbutton-options {
	background: url('../img/icons/options.png');
}
button.ylbutton.ylbutton-options:active {
	background: url('../img/icons/options-active.png');
}
button.ylbutton.ylbutton-options:disabled {
	background: url('../img/icons/options-disabled.png');
}

button.ylbutton.ylbutton-group-liststyle {
	background: url('../img/icons/group-liststyle.png');
}
button.ylbutton.ylbutton-group-liststyle:active {
	background: url('../img/icons/group-liststyle-active.png');
}
button.ylbutton.ylbutton-group-liststyle:disabled {
	background: url('../img/icons/group-liststyle-disabled.png');
}

button.ylbutton.ylbutton-group-iconstyle {
	background: url('../img/icons/group-iconstyle.png');
}
button.ylbutton.ylbutton-group-iconstyle:active {
	background: url('../img/icons/group-iconstyle-active.png');
}
button.ylbutton.ylbutton-group-iconstyle:disabled {
	background: url('../img/icons/group-iconstyle-disabled.png');
}

button.ylbutton.ylbutton-layereditor {
	background: url('../img/icons/layerEditor.png');
}
button.ylbutton.ylbutton-layereditor:active {
	background: url('../img/icons/layerEditor-active.png');
}
button.ylbutton.ylbutton-layereditor:disabled {
	background: url('../img/icons/layerEditor-disabled.png');
}

button.ylbutton.ylbutton-save {
	background: url('../img/icons/save.png');
}
button.ylbutton.ylbutton-save:active {
	background: url('../img/icons/save-active.png');
}
button.ylbutton.ylbutton-save:disabled {
	background: url('../img/icons/save-disabled.png');
}

button.ylbutton.ylbutton-reset {
	background: url('../img/icons/reset.png');
}
button.ylbutton.ylbutton-reset:active {
	background: url('../img/icons/reset-active.png');
}
button.ylbutton.ylbutton-reset:disabled {
	background: url('../img/icons/reset-disabled.png');
}

.yl-base-tags-button {
	float: left;
	display: inline-flex;
	align-items: stretch;
	justify-content: flex-start;
	width: 90px;
	min-width: 90px;
	height: 24px;
	padding: 0 6px 0 0;
	margin-right: 6px;
	border: 1px solid #000;
	border-radius: 0;
	background: #f0f0f0;
	color: #000;
	font-family: sans-serif;
	font-size: 13px;
	line-height: 22px;
	box-shadow: none;
	appearance: none;
}

.yl-base-tags-button:hover:not(:disabled),
.yl-base-tags-button:focus:not(:disabled) {
	background: #f7f7f7;
	border-color: #000;
	color: #000;
	box-shadow: none;
	outline: none;
}

.yl-base-tags-button:active:not(:disabled) {
	background: #e1e1e1;
	border-color: #000;
	color: #000;
}

.yl-base-tags-button:disabled {
	background: #efefef;
	border-color: #808080;
	color: #808080;
	opacity: 1;
	box-shadow: none;
}

.yl-base-tags-button-icon {
	display: block;
	width: 23px;
	height: 22px;
	flex: 0 0 24px;
	margin-right: 6px;
	background-color: #ADADAD;
	background-image: url('../img/icons/tag.png');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 16px 16px;
}

.yl-base-tags-button:active:not(:disabled) .yl-base-tags-button-icon {
	background-color: #b8c8e2;
	background-image: url('../img/icons/tag-active.png');
}

.yl-base-tags-button:disabled .yl-base-tags-button-icon {
	background-color: #EDEDED;
	background-image: url('../img/icons/tag-disabled.png');
}

.yl-base-tags-button-label {
	white-space: nowrap;
	flex: 1 1 auto;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: left;
	font-weight: 400;
	line-height: 22px;
}

.yl-base-tags-dialog .modal-dialog {
	max-width: 360px;
}

.yl-base-tags-panel {
	border: 1px solid #d1d8e3;
	border-radius: 4px;
	padding: 10px;
	background: linear-gradient(180deg, #fbfcfe 0%, #f2f6fb 100%);
}

.yl-base-tags-loading {
	margin-bottom: 8px;
}

.yl-base-tags-list {
	min-height: 136px;
	max-height: 180px;
	overflow-y: auto;
	padding: 8px;
	border: 1px solid #d8dee7;
	border-radius: 4px;
	background: #fff;
}

.yl-base-tags-assigned {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 6px;
}

.yl-base-tags-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 2px 4px 2px 10px;
	border: 2px solid #0099ff;
	border-radius: 999px;
	background: #6699ee;
	color: #fff;
	min-height: 28px;
}

.yl-base-tags-chip-label {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
}

.yl-base-tags-chip-remove {
	width: 20px;
	height: 20px;
	border: none;
	border-radius: 999px;
	padding: 0;
	background: rgba(0, 0, 0, 0.18);
	color: #fff;
	font-weight: 700;
	line-height: 20px;
	text-align: center;
	cursor: pointer;
}

.yl-base-tags-chip-remove:hover:not(:disabled),
.yl-base-tags-chip-remove:focus:not(:disabled) {
	background: rgba(0, 0, 0, 0.32);
	outline: none;
}

.yl-base-tags-chip-remove:disabled {
	opacity: 0.55;
	cursor: default;
}

.yl-base-tags-note {
	margin-top: 8px;
	line-height: 1.35;
}

/* Polygon Editor Buttons */
button.ylbutton.ylbutton-polygoneditor-freeform {
	background: url('../img/icons/layerEditor.png');
}
button.ylbutton.ylbutton-polygoneditor-freeform:active {
	background: url('../img/icons/layerEditor-active.png');
}
button.ylbutton.ylbutton-polygoneditor-freeform.active {
	background: url('../img/icons/layerEditor-active.png');
}
button.ylbutton.ylbutton-polygoneditor-freeform:disabled {
	background: url('../img/icons/layerEditor-disabled.png');
}

button.ylbutton.ylbutton-polygoneditor-freehand {
	background: url('../img/icons/freeform-icon.png');
}
button.ylbutton.ylbutton-polygoneditor-freehand:active {
	background: url('../img/icons/freeform-icon-active.png');
}
button.ylbutton.ylbutton-polygoneditor-freehand.active {
	background: url('../img/icons/freeform-icon-active.png');
}
button.ylbutton.ylbutton-polygoneditor-freehand:disabled {
	background: url('../img/icons/freeform-icon-disabled.png');
}

button.ylbutton.ylbutton-polygoneditor-smart {
	background: url('../img/icons/smart-polygon-icon.png');
}
button.ylbutton.ylbutton-polygoneditor-smart:active {
	background: url('../img/icons/smart-polygon-icon-active.png');
}
button.ylbutton.ylbutton-polygoneditor-smart.active {
	background: url('../img/icons/smart-polygon-icon-active.png');
}
button.ylbutton.ylbutton-polygoneditor-smart:disabled {
	background: url('../img/icons/smart-polygon-icon-disabled.png');
}

button.ylbutton.ylbutton-polygoneditor-rectangle {
	background: url('../img/icons/box-icon.png');
}
button.ylbutton.ylbutton-polygoneditor-rectangle:active {
	background: url('../img/icons/box-icon-active.png');
}
button.ylbutton.ylbutton-polygoneditor-rectangle.active {
	background: url('../img/icons/box-icon-active.png');
}
button.ylbutton.ylbutton-polygoneditor-rectangle:disabled {
	background: url('../img/icons/box-icon-disabled.png');
}

button.ylbutton.ylbutton-polygoneditor-circle {
	background: url('../img/icons/circle-icon.png');
}
button.ylbutton.ylbutton-polygoneditor-circle:active {
	background: url('../img/icons/circle-icon-active.png');
}
button.ylbutton.ylbutton-polygoneditor-circle.active {
	background: url('../img/icons/circle-icon-active.png');
}
button.ylbutton.ylbutton-polygoneditor-circle:disabled {
	background: url('../img/icons/circle-icon-disabled.png');
}

button.ylbutton.ylbutton-polygoneditor-arrow {
	background: url('../img/icons/arrow-icon.png');
}
button.ylbutton.ylbutton-polygoneditor-arrow:active {
	background: url('../img/icons/arrow-icon-active.png');
}
button.ylbutton.ylbutton-polygoneditor-arrow.active {
	background: url('../img/icons/arrow-icon-active.png');
}
button.ylbutton.ylbutton-polygoneditor-arrow:disabled {
	background: url('../img/icons/arrow-icon-disabled.png');
}

button.ylbutton.ylbutton-polygoneditor-isolation {
	background: url('../img/icons/isolationmode-icon.png');
}
button.ylbutton.ylbutton-polygoneditor-isolation:active {
	background: url('../img/icons/isolationmode-icon-active.png');
}
button.ylbutton.ylbutton-polygoneditor-isolation.active {
	background: url('../img/icons/isolationmode-icon-active.png');
}
button.ylbutton.ylbutton-polygoneditor-isolation:disabled {
	background: url('../img/icons/isolationmode-icon-disabled.png');
}

/* Text Fields */
.yltextfield-simple, .yltextfield-rich {
	padding-left: 8px;
	padding-right: 8px;
}
.yltextfield-simple .field-title, .yltextfield-rich .field-title {
	padding-left: 2px;
	color: #212529;
	background-color: transparent;
}
.yltextfield-simple .input-group, .yltextfield-rich .input-group {
	margin-top: -2px;
}
.yltextfield-simple .field-value, .yltextfield-rich .field-value {
	color: black;
}
.yltextfield-simple .field-value:disabled, .yltextfield-rich .field-value:disabled {
	color: gray;
}
.yltextfield-rich .note-editor {
	width: 100%;
	border: 1px solid #CED4DA !important;
}
.yltextfield-rich .note-toolbar {
	background-color: #ECF0F1;
	padding-left: 0px;
	padding-bottom: 0px;
	white-space: nowrap;
	overflow: hidden;
}
.yltextfield-rich .note-toolbar .btn-group {
	border: 1px solid #D7E0E2;
	margin: 0px;
}
.yltextfield-rich .note-toolbar .btn-group.note-para {
	border: none;
}
.yltextfield-rich .note-toolbar button {
	font-size: 9px;	
}
.yltextfield-rich .note-toolbar .dropdown-toggle::after {
	display: none;
}
.yltextfield-rich .note-toolbar .note-dropdown-menu {
	min-width: 116px !important;
}
.yltextfield-rich .note-toolbar button:not([disabled]):hover {
	background-color: white;
	color: #212529;
}
.yltextfield-rich .note-toolbar button:not([disabled]).active,
.yltextfield-rich .note-toolbar button:not([disabled])[aria-pressed="true"] {
	color: #173b63;
	background-color: #dce8f3;
	border-color: #8aaac5;
	box-shadow: inset 0 0 0 1px rgba(23, 59, 99, .12);
}
.yltextfield-rich .note-toolbar button:disabled {
	cursor: default;
}

.yltextfield-rich .note-toolbar .note-btn-legacy-literal {
	margin-left: 4px;
	border-left: 1px solid #c6d1d4;
}

.yltextfield-rich .note-toolbar .note-btn-legacy-unlink {
	margin-left: 4px;
}

.yltextfield-rich .note-editable {
	font-size: 14px;
	padding: 2px !important;
	padding-left: 6px !important;
}
.yltextfield-rich .note-editable p {
	margin-bottom: 0px;
}
.yltextfield-rich .note-editable pre {
	background-color: #EEEEEE;
	font-family: monospace;
	margin-bottom: 0px;
}

.yltextfield-rich .note-editable .yl-richtext-mode {
	padding: 0;
	color: black;
	background: transparent;
	font-family: var(--bs-body-font-family, sans-serif);
	font-size: inherit;
	font-style: normal;
	font-weight: normal;
	text-decoration: none;
	vertical-align: baseline;
}

.yltextfield-rich .note-editable .yl-richtext-mode-bold {
	font-weight: 700;
}

.yltextfield-rich .note-editable .yl-richtext-mode-italic {
	font-style: italic;
}

.yltextfield-rich .note-editable .yl-richtext-mode-underline {
	text-decoration: underline;
}

.yltextfield-rich .note-editable .yl-richtext-mode-superscript {
	font-size: smaller;
	vertical-align: super;
}

.yltextfield-rich .note-editable .yl-richtext-mode-subscript {
	font-size: smaller;
	vertical-align: sub;
}

.yltextfield-rich .note-editable .yl-richtext-mode-literal,
.yltextfield-rich .note-editable code[data-yenda-richtext-mode="literal"] {
	padding: 1px 3px;
	color: #267304;
	background: #f0f0f0;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
	font-size: .92em;
	white-space: pre-wrap;
}

.yltextfield-rich.yl-richtext-link-drop-active .note-editable {
	outline: 2px solid #2980b9;
	outline-offset: -2px;
	background: #eef7fc;
}

/* Quick Info */
.ylquickinfo {
	cursor: default;
	width: 130px;
	height: 162px;
	background: white;
}

.ylquickinfo > .infobar {
	width: 130px;
	height: 16px;
	border-top: 1px solid #F6F6F6;
	border-left: 1px solid #F6F6F6;
	border-bottom: 1px solid #CACACA;
	border-right: 1px solid #CACACA;
}
.ylquickinfo > .infobar > .infoicon {
	float: left;
	width: 14px;
	height: 14px;
	background: #999;
	font-size: 11px;
	line-height: 12px;
	text-align: center;
}

.ylquickinfo.starred > .infobar .infotext {
	background: #ffc107 !important;
}
.ylquickinfo.starred > .infobar i.star:before {
	content: "\f005";
}
.ylquickinfo.starred > .infobar > .infoicon {
	background: #ffc107 !important;
	
}
.ylquickinfo > .infobar > .infoicon.object {
	background: url('../img/icons/object-icon.png');
}
.ylquickinfo > .infobar > .infoicon.view {
	background: url('../img/icons/view-icon.png');
}
.ylquickinfo > .infobar > .infoicon.layer {
	background: url('../img/icons/layer-icon.png');
}
.ylquickinfo > .infobar > .infoicon.group {
	background: url('../img/icons/group-icon.png');
}
.ylquickinfo > .infobar > .infoicon.inscription {
	background: url('../img/icons/inscription-icon.png');
}
.ylquickinfo > .infobar > .infoicon.text {
	background: url('../img/icons/text-icon.png');
}
.ylquickinfo > .infobar > .infoicon.url {
	background: url('../img/icons/url-icon.png');
}
.ylquickinfo > .infobar > .infoicon.lighttable {
	background: url('../img/icons/lighttable-icon.png');
}

.ylquickinfo > .infobar > .infotext {
	float: left;
	background: #EEEEEE;
	width: 114px;
	height: 14px;
	padding-left: 4px;
	padding-right: 0px;
	font-size: 10px;
	line-height: 12px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.ylquickinfo > .preview {
	width: 130px;
	height: 130px;
	border: 1px solid #C0C0C0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	text-overflow: ellipsis;
	overflow: hidden;
	font-size: 10px;
	line-height: 12px;
	padding: 3px;
	cursor: default;
}
.ylquickinfo > .preview.noview {
	background-image: url('../img/icons/preview-noview.png');
}
.ylquickinfo > .preview.loading {
	background-image: url('../img/icons/preview-loading.png');
}
.ylquickinfo > .preview.error {
	background-image: url('../img/icons/preview-loaderror.png');
}
.ylquickinfo > .preview.url {
	background-image: url('../img/icons/preview-url.png');
}
.ylquickinfo > .preview.lighttable {
	background-image: url('../img/icons/preview-lighttable.png');
}

.yl-lighttable-canvas-view .frame-view-content {
	padding: 0;
	overflow: hidden;
	background: linear-gradient(180deg, #f3f6fb 0%, #e7edf7 100%);
}

.yl-lighttable-canvas-view .frame-view-toolbar {
	display: flex;
}

.yl-lighttable-properties-view .frame-view-content {
	padding: 0;
	overflow: auto;
	background: linear-gradient(180deg, rgba(250,252,255,0.97), rgba(235,241,250,0.98));
}

.yl-lighttable-canvas {
	height: 100%;
	display: grid;
	grid-template-rows: minmax(0, 1fr);
}

.yl-lighttable-properties-panel {
	min-height: 100%;
	display: grid;
	grid-template-rows: auto minmax(0, 1fr);
	gap: 0.9rem;
	padding: 1rem;
	box-sizing: border-box;
}

.yl-lighttable-stage-panel {
	height: 100%;
	min-width: 0;
	display: grid;
	grid-template-rows: auto minmax(0, 1fr);
	background: linear-gradient(180deg, rgba(255,255,255,0.74), rgba(240,245,252,0.94));
}

.yl-lighttable-properties-section {
	padding: 0.95rem 1rem;
	border-radius: 14px;
	background: rgba(255,255,255,0.82);
	border: 1px solid rgba(17,34,68,0.08);
	display: grid;
	gap: 0.75rem;
}

.yl-lighttable-title-metadata {
	padding-bottom: 0.35rem;
}

.yl-lighttable-viewport-wrapper {
	position: relative;
	min-height: 0;
	border-radius: 20px;
	overflow: hidden;
	background: linear-gradient(180deg, #d7e2f1 0%, #edf3fa 100%);
	box-shadow: inset 0 0 0 1px rgba(34,55,89,0.08);
}

.yl-lighttable-viewport {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-image:
		linear-gradient(rgba(72,100,145,0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(72,100,145,0.08) 1px, transparent 1px),
		radial-gradient(circle at top left, rgba(255,255,255,0.8), rgba(255,255,255,0));
	background-size: 24px 24px, 24px 24px, auto;
	transition: box-shadow 0.18s ease;
}

.yl-lighttable-viewport-wrapper.drop-active .yl-lighttable-viewport {
	box-shadow: inset 0 0 0 4px rgba(74,124,201,0.35);
}

.yl-lighttable-stage {
	position: relative;
	min-width: 5000px;
	min-height: 5000px;
	padding: 1.5rem;
	box-sizing: border-box;
}

.yl-lighttable-drop-hint {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 0.85rem 1.1rem;
	border-radius: 999px;
	background: rgba(9,21,38,0.78);
	color: #fff;
	font-size: 0.9rem;
	letter-spacing: 0.01em;
	z-index: 3;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.18s ease;
}

.yl-lighttable-viewport-wrapper.drop-active .yl-lighttable-drop-hint {
	opacity: 1;
}


.yl-lighttable-frame {
	position: absolute;
	border-radius: 14px;
	border: 1px solid rgba(28,46,75,0.14);
	background: rgba(255,255,255,0.82);
	box-shadow: 0 12px 28px rgba(33,56,93,0.16);
	overflow: hidden;
	backdrop-filter: blur(2px);
}

.yl-lighttable-frame.selected {
	box-shadow: 0 18px 34px rgba(22,57,110,0.25);
	border-color: rgba(44,94,172,0.42);
	outline: 3px solid rgba(72,126,214,0.22);
}

.yl-lighttable-frame-header {
	height: 16px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.35rem;
	padding: 0 0.35rem;
	background: linear-gradient(90deg, rgba(21,45,82,0.92), rgba(57,92,147,0.86));
	color: #f6fbff;
	cursor: move;
}

.yl-lighttable-frame-title {
	font-size: 0.64rem;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.yl-lighttable-frame-ref {
	font-size: 0.62rem;
	color: rgba(236,244,255,0.76);
	white-space: nowrap;
}

.yl-lighttable-frame-body {
	position: relative;
	height: calc(100% - 16px);
	overflow: hidden;
	background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(236,241,248,0.84));
	cursor: grab;
}

.yl-lighttable-frame-body:active {
	cursor: grabbing;
}

.yl-lighttable-viewport-wrapper.yl-lighttable-readonly .yl-lighttable-frame-header {
	cursor: default;
}

.yl-lighttable-viewport-wrapper.yl-lighttable-readonly .yl-lighttable-frame-body {
	cursor: pointer;
}

.yl-lighttable-viewport-wrapper.yl-lighttable-readonly .yl-lighttable-annotation-frame .yl-lighttable-frame-body {
	cursor: text;
}

.yl-lighttable-frame-media {
	position: absolute;
	inset: 0;
	background-repeat: no-repeat;
	background-color: rgba(188,203,225,0.38);
}

.yl-lighttable-frame-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem;
	text-align: center;
	font-size: 0.82rem;
	font-weight: 700;
	color: #47627d;
	background: linear-gradient(135deg, rgba(255,255,255,0.78), rgba(229,237,248,0.92));
}

.yl-lighttable-annotation-frame {
	background: rgba(255,249,232,0.92);
	border-color: rgba(167,122,29,0.24);
	box-shadow: 0 14px 30px rgba(115,84,25,0.18);
}

.yl-lighttable-annotation-frame .yl-lighttable-frame-header {
	background: linear-gradient(90deg, rgba(112,77,19,0.95), rgba(175,125,33,0.9));
	cursor: move;
}

.yl-lighttable-annotation-frame .yl-lighttable-frame-body {
	background: linear-gradient(180deg, rgba(255,252,244,0.96), rgba(252,244,223,0.96));
	cursor: text;
}

.yl-lighttable-annotation-editor {
	width: 100%;
	height: 100%;
	padding: 0.8rem 0.9rem;
	overflow: auto;
	outline: none;
	font-size: 0.92rem;
	line-height: 1.5;
	color: #483413;
	word-break: break-word;
	white-space: normal;
}

.yl-lighttable-annotation-editor[contenteditable="false"] {
	background: rgba(255,255,255,0.35);
	cursor: default;
}

.yl-lighttable-annotation-editor a,
.yl-lighttable-annotation-editor a:visited {
	color: #0d5a92;
	text-decoration: underline;
	text-decoration-thickness: 1px;
}

.yl-lighttable-selection-note {
	margin-top: 0.45rem;
	line-height: 1.4;
}

.yl-lighttable-debug {
	margin-top: 0.2rem;
	padding: 0.85rem 0.95rem 0.95rem;
	border-radius: 14px;
	background: rgba(255,255,255,0.82);
	border: 1px solid rgba(17,34,68,0.08);
}

.yl-lighttable-debug > summary {
	cursor: pointer;
	font-weight: 700;
	color: #1b3657;
	list-style: none;
}

.yl-lighttable-debug > summary::-webkit-details-marker {
	display: none;
}

.yl-lighttable-debug-xml {
	margin-top: 0.85rem;
	min-height: 220px;
	resize: vertical;
	font-family: Menlo, Monaco, Consolas, 'Liberation Mono', monospace;
	font-size: 0.76rem;
	line-height: 1.45;
	white-space: pre;
}

.yl-lighttable-debug-actions {
	margin-top: 0.7rem;
	display: flex;
	gap: 0.55rem;
	flex-wrap: wrap;
}

.yl-lighttable-properties-info .info-label {
	font-weight: 600;
}

.ylquickinfo > .preview.group {
	background-image: url('../img/icons/preview-group.png');
}

.ylquickinfo > .title {
	width: 130px;
	height: 16px;
	background: #EEEEEE;
	border-top: 1px solid #CACACA;
	border-left: 1px solid #CACACA;
	border-bottom: 1px solid #CACACA;
	border-right: 1px solid #CACACA;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	word-break: break-word;
	font-size: 10px;
	line-height: 12px;
	padding-left: 2px;
}

/* Metadata Control */
.ylmetadatacontrol .language-widget > div, .ylflexmetadatacontrol .language-widget > div {
	width: 90px;
	max-width: 90px;
	flex: 0 0 90px;
	flex-wrap: nowrap;
}

.ylmetadatacontrol .language-widget .input-group-text,
.ylflexmetadatacontrol .language-widget .input-group-text,
.yl-lighttable-properties-panel .language-widget .input-group-text {
	width: 32px;
	height: 31px;
	flex: 0 0 32px;
	justify-content: center;
	padding: .25rem .5rem;
	color: #343a40;
	background-color: #e9ecef;
	border-color: #ced4da;
}

.ylmetadatacontrol .language-widget .language-value,
.ylflexmetadatacontrol .language-widget .language-value,
.yl-lighttable-properties-panel .language-widget .language-value {
	width: 1%;
	min-width: 0;
	height: 31px;
	flex: 1 1 auto;
	padding: .25rem 1.5rem .25rem .5rem;
	background-color: #fff;
	background-position: right .45rem center;
	background-size: 12px 9px;
	border-color: #ced4da;
}

.ylmetadatacontrol .language-widget .language-value:disabled,
.ylflexmetadatacontrol .language-widget .language-value:disabled,
.yl-lighttable-properties-panel .language-widget .language-value:disabled {
	color: #6c757d;
	background-color: #e9ecef;
	cursor: default;
}
.ylflexmetadatacontrol {
	overflow: hidden;
	height: 100%;	
}
.ylflexmetadatacontrol .ylflexmetadatacontrol-fields {
	overflow: auto;
	height: calc( 100% - 39px );
}

.ylflexmetadatacontrol .ylflexmetadatacontrol-fields .template-contents {
	background-color: #f5f5f5;
}

.ylflexmetadatacontrol .ylflexmetadatacontrol-fields .template-header i:before {
	content: "\f0da";
}

.ylflexmetadatacontrol .ylflexmetadatacontrol-fields .template-header.show i:before {
	content: "\f0d7";
}

/* Contents List */
ol.ylcontentslist {
	margin: 0;
	padding: 5px;
	list-style-type: none;
	overflow: auto;
	width: 100%;
	height: 100%;
	background-color: #C0C0C0;
}

ol.ylcontentslist li {
	border: 3px solid #7F7F7F;
	display: inline-block;
	margin-right: 6px;
	margin-bottom: 6px;
}

ol.ylcontentslist.display-list {
	padding: 4px;
}

ol.ylcontentslist.display-list li {
	display: block;
	margin-right: 0;
	border-width: 1px;
}

ol.ylcontentslist.display-list .ylquickinfo {
	width: 100%;
	height: 44px;
	display: flex;
	align-items: stretch;
}

ol.ylcontentslist.display-list .ylquickinfo > .infobar {
	width: 120px;
	height: 44px;
	display: flex;
	align-items: center;
	border-right: none;
}

ol.ylcontentslist.display-list .ylquickinfo > .infobar > .infoicon {
	float: none;
	flex: 0 0 14px;
	margin-left: 1px;
	margin-right: 3px;
}

ol.ylcontentslist.display-list .ylquickinfo > .infobar > .infotext {
	float: none;
	flex: 1 1 auto;
	width: auto;
	height: auto;
	display: flex;
	align-items: center;
	line-height: 12px;
	padding-right: 4px;
}

ol.ylcontentslist.display-list .ylquickinfo > .preview {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border-left: none;
	border-right: none;
	padding: 0;
	font-size: 9px;
	line-height: 10px;
}

ol.ylcontentslist.display-list .ylquickinfo > .title {
	flex: 1 1 auto;
	width: auto;
	height: 44px;
	display: flex;
	align-items: center;
	border-left: none;
	padding-left: 6px;
	padding-right: 6px;
	line-height: 12px;
}

ol.ylcontentslist li.selected {
	border: 3px solid #FFFF00;
}

ol.ylcontentslist.display-list li.selected {
	border-width: 2px;
}

ol.ylcontentslist.yl-groupcontents-drop-target,
ol.ylcontentslist li.yl-groupcontents-drop-target {
	background-color: #dce9ff;
	outline: 1px solid #6ba3ff;
}

ol.ylcontentslist.yl-objectcontents-drop-target,
ol.ylcontentslist li.yl-objectcontents-drop-target {
	background-color: #e6f0ff;
	outline: 1px solid #6ba3ff;
}

/* Group Browser */
.ylbrowser-grouplistview {
	background: white;
	height: 100%;
}

.ylbrowser-taglistview.ylbrowser-list-disabled {
	opacity: 0.7;
}

.ylbrowser-taglistview.ylbrowser-list-disabled,
.ylbrowser-taglistview.ylbrowser-list-disabled * {
	pointer-events: none;
}

.ylbrowser-grouplist li {
	cursor: default;
	font-size: 12px;
	color: black;
	padding: 2px;
	padding-left: 10px;
	padding-right: 10px;
}
.ylbrowser-grouplist li span {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	word-break: break-word;
}
.ylbrowser-grouplist li.loading-group-item {
	align: center !important;
}

.ylbrowser-grouplist li.yl-group-drop-target {
	background: #e6f0ff;
	outline: 1px solid #6ba3ff;
}

.ylbrowser-groupmetadata-tags .tag-label {
	display: inline-block;
	max-width: 110px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.yltoolbar-info {
	font-size: 14px;
	padding-left: 5px;
	line-height: 24px;
	height: 24px;
}

.ylbrowser-groupcontents-toolbar .ylbrowser-groupcontents-info {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	align-items: center;
	gap: 8px;
	padding-left: 0;
}

.ylbrowser-groupcontents-toolbar .ylbrowser-groupcontents-info .progress {
	flex: 1 1 auto;
	min-width: 80px;
	margin: 0;
}

.ylbrowser-groupcontents-toolbar .ylbrowser-groupcontents-info .info-label {
	flex: 0 1 auto;
}

.ylbrowser-groupcontents-toolbar .ylbutton-group-liststyle,
.ylbrowser-groupcontents-toolbar .ylbutton-group-iconstyle {
	margin-left: auto;
}

.yltoolbar-info .info-label {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.ylcomponent-searchmodule {
	min-width: 860px;
	min-height: 430px;
}

.ylsearch-view {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 12px;
	height: 100%;
	overflow: auto;
	background: linear-gradient(180deg, #f7f9fb 0%, #eef2f6 100%);
}

.ylsearch-form-group,
.ylsearch-section {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 10px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid #d7dee6;
	border-radius: 10px;
	box-shadow: 0 1px 2px rgba(11, 28, 44, 0.05);
}

.ylsearch-form-group label,
.ylsearch-section-title {
	margin: 0;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #35516d;
}

.ylsearch-language-control {
	display: grid;
	grid-template-columns: 32px minmax(0, 1fr);
	align-items: stretch;
	min-width: 0;
}

.ylsearch-language-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #c7d0d9;
	border-right: 0;
	border-radius: 6px 0 0 6px;
	background: #e4e8ec;
	color: #40566b;
}

.ylsearch-language-control .ylsearch-language {
	min-width: 0;
	border-radius: 0 6px 6px 0;
}

.ylsearch-actions {
	display: flex;
	justify-content: flex-end;
	margin-top: auto;
}

.ylsearch-guidance {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	min-height: 34px;
	padding: 8px 10px;
	border-radius: 8px;
	background: rgba(33, 73, 138, 0.08);
	color: #35516d;
	font-size: 0.76rem;
	line-height: 1.35;
}

.ylsearch-guidance[hidden] {
	display: none;
}

.ylsearch-guidance i {
	margin-top: 2px;
	color: #21498a;
}

.ylsearch-submit {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding-left: 14px;
	padding-right: 14px;
	font-weight: 600;
}

.ylsearch-facets {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
	padding: 10px;
	min-width: 0;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid #d7dee6;
	border-radius: 10px;
	box-shadow: 0 1px 2px rgba(11, 28, 44, 0.05);
}

.ylsearch-facets-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.ylsearch-facets legend,
.ylsearch-facet-title {
	margin: 0;
	padding: 0;
	width: auto;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.035em;
	text-transform: uppercase;
	color: #35516d;
}

.ylsearch-clear-filters {
	padding: 0 2px;
	font-size: 0.72rem;
	text-decoration: none;
}

.ylsearch-facet-options {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-top: 5px;
	max-height: 82px;
	overflow: auto;
}

.ylsearch-facet-option {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin: 0;
	padding: 3px 7px;
	max-width: 100%;
	border: 1px solid #ccd6e0;
	border-radius: 999px;
	background: #f7f9fb;
	color: #344b61;
	font-size: 0.72rem;
	cursor: pointer;
}

.ylsearch-facet-option:has(input:checked) {
	border-color: #21498a;
	background: #e6edf9;
	color: #173d7a;
}

.ylsearch-facet-option input {
	margin: 0;
}

.ylsearch-facet-label {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.ylsearch-facet-count {
	flex: 0 0 auto;
	padding: 0 4px;
	border-radius: 999px;
	background: rgba(33, 73, 138, 0.1);
	font-variant-numeric: tabular-nums;
}

.ylsearch-navigation {
	flex: 0 0 auto;
	min-width: 0;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid #c9d4df;
	border-radius: 10px;
	box-shadow: 0 1px 2px rgba(11, 28, 44, 0.05);
}

.ylsearch-navigation > summary {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 38px;
	padding: 8px 10px;
	list-style: none;
	color: #29465f;
	font-size: 0.78rem;
	font-weight: 700;
	cursor: pointer;
}

.ylsearch-navigation > summary::-webkit-details-marker {
	display: none;
}

.ylsearch-navigation > summary::after {
	content: "\f078";
	margin-left: auto;
	font-family: "Font Awesome 5 Free";
	font-size: 0.67rem;
	font-weight: 900;
	transition: transform 120ms ease;
}

.ylsearch-navigation[open] > summary::after {
	transform: rotate(180deg);
}

.ylsearch-navigation > summary:focus-visible {
	outline: 2px solid #0d6efd;
	outline-offset: 2px;
	border-radius: 9px;
}

.ylsearch-navigation > summary > i {
	color: #21498a;
}

.ylsearch-navigation-count {
	padding: 2px 6px;
	background: #e2eaf4;
	color: #29465f;
	font-size: 0.66rem;
}

.ylsearch-navigation-body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 0 10px 10px;
	border-top: 1px solid #e1e7ed;
}

.ylsearch-navigation-body section {
	padding-top: 9px;
}

.ylsearch-recent {
	border-top: 1px solid #e1e7ed;
}

.ylsearch-navigation-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 6px;
}

.ylsearch-navigation-heading > strong {
	color: #3b5268;
	font-size: 0.72rem;
	letter-spacing: 0.025em;
	text-transform: uppercase;
}

.ylsearch-navigation-heading > div {
	display: flex;
	align-items: center;
	gap: 3px;
}

.ylsearch-save-current {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 2px 6px;
	border: 1px solid #bdcad7;
	background: #eef3f8;
	color: #29465f;
	font-size: 0.68rem;
}

.ylsearch-clear-saved,
.ylsearch-clear-recent {
	padding: 2px 4px;
	color: #586f85;
	font-size: 0.68rem;
	text-decoration: none;
}

.ylsearch-save-form {
	margin-top: 7px;
}

.ylsearch-save-form[hidden] {
	display: none !important;
}

.ylsearch-save-form label {
	margin-bottom: 4px;
	color: #4c6175;
	font-size: 0.68rem;
	font-weight: 600;
}

.ylsearch-save-form .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
}

.ylsearch-save-form.has-error .invalid-feedback {
	display: block;
}

.ylsearch-navigation-empty {
	margin: 7px 0 0;
	color: #778899;
	font-size: 0.69rem;
	line-height: 1.35;
}

.ylsearch-navigation-list {
	display: flex;
	flex-direction: column;
	gap: 3px;
	margin: 7px 0 0;
	padding: 0;
	max-height: 126px;
	overflow: auto;
	list-style: none;
}

.ylsearch-navigation-list li {
	display: flex;
	align-items: stretch;
	min-width: 0;
	border: 1px solid #d7e0e8;
	border-radius: 6px;
	background: #f8fafc;
}

.ylsearch-navigation-open {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
	padding: 5px 7px;
	border: 0;
	border-radius: 5px 0 0 5px;
	background: transparent;
	color: #263f57;
	text-align: left;
}

.ylsearch-navigation-open:hover,
.ylsearch-navigation-open:focus-visible {
	background: #e8eff8;
}

.ylsearch-navigation-name,
.ylsearch-navigation-open small {
	max-width: 100%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.ylsearch-navigation-name {
	font-size: 0.72rem;
	font-weight: 600;
}

.ylsearch-navigation-open small {
	color: #718396;
	font-size: 0.64rem;
}

.ylsearch-navigation-remove {
	display: inline-flex;
	flex: 0 0 30px;
	align-items: center;
	justify-content: center;
	border: 0;
	border-left: 1px solid #d7e0e8;
	border-radius: 0 5px 5px 0;
	background: transparent;
	color: #788a9a;
	font-size: 0.68rem;
}

.ylsearch-navigation-remove:hover,
.ylsearch-navigation-remove:focus-visible {
	background: #f7e8e8;
	color: #9b3030;
}

.ylsearch-privacy {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	margin: 0;
	padding-top: 8px;
	border-top: 1px solid #e1e7ed;
	color: #6e8091;
	font-size: 0.64rem;
	line-height: 1.35;
}

.ylsearch-privacy i {
	margin-top: 2px;
}

@media (prefers-reduced-motion: reduce) {
	.ylsearch-navigation > summary::after {
		transition: none;
	}
}

.ylsearch-results-toolbar .ylbrowser-groupcontents-info {
	max-width: calc(100% - 230px);
}

.ylsearch-pagination {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-left: auto;
}

.ylsearch-pagination .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 26px;
	padding: 0;
	color: #2b435b;
	background: #eef2f6;
	border: 1px solid #c5d0db;
}

.ylsearch-page-label {
	min-width: 84px;
	font-size: 0.72rem;
	font-variant-numeric: tabular-nums;
	text-align: center;
	color: #334b63;
}

.ylsearch-results-panel {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: linear-gradient(180deg, #edf1f5 0%, #dce3ea 100%);
}

.ylsearch-results-state {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	height: 100%;
	padding: 28px;
	box-sizing: border-box;
	text-align: center;
	color: #52687d;
}

.ylsearch-results-state i {
	font-size: 2rem;
	color: #6c8298;
}

.ylsearch-results-state strong {
	font-size: 1rem;
	color: #29445e;
}

.ylsearch-results-state span {
	max-width: 360px;
	font-size: 0.82rem;
	line-height: 1.45;
}

.ylsearch-results-panel[data-state="error"] .ylsearch-results-state i {
	color: #a64444;
}

.ylsearch-results-panel ol.ylcontentslist:not(.display-list) .ylquickinfo:has(.ylquickinfo-match:not([hidden])) {
	height: 198px;
}

.ylsearch-results-panel .ylquickinfo-match {
	box-sizing: border-box;
	width: 130px;
	height: 36px;
	padding: 4px 5px;
	overflow: hidden;
	border: 1px solid #c7d1db;
	border-top: 0;
	background: #f8fafc;
	color: #455d74;
	font-size: 9px;
	line-height: 12px;
}

.ylsearch-results-panel .ylquickinfo-match[hidden] {
	display: none !important;
}

.ylsearch-results-panel .ylquickinfo-match mark {
	padding: 0 1px;
	background: #ffe78a;
	color: #26384a;
}

.ylsearch-results-panel ol.ylcontentslist.display-list .ylquickinfo:has(.ylquickinfo-match:not([hidden])) {
	height: 58px;
}

.ylsearch-results-panel ol.ylcontentslist.display-list .ylquickinfo:has(.ylquickinfo-match:not([hidden])) > .infobar,
.ylsearch-results-panel ol.ylcontentslist.display-list .ylquickinfo:has(.ylquickinfo-match:not([hidden])) > .preview,
.ylsearch-results-panel ol.ylcontentslist.display-list .ylquickinfo:has(.ylquickinfo-match:not([hidden])) > .title {
	height: 58px;
}

.ylsearch-results-panel ol.ylcontentslist.display-list .ylquickinfo-match {
	display: flex;
	align-items: center;
	flex: 0 1 42%;
	width: auto;
	height: 58px;
	padding: 5px 8px;
	border-top: 1px solid #c7d1db;
	border-left: 0;
	font-size: 10px;
}

/* Object Editor */
.ylobjecteditor-contentview {
	min-width: 230px;
}

ol.ylcontentslist li[draggable="true"] {
	cursor: move;
}

.ylobjecteditor-contentview .panel-selector button {
	line-height: 1 !important;
}


.ylobjecteditor-contentview .content-view-wrapper {
	position: absolute;
	width: 100%;
	top: 2.5rem;
	bottom: 0px;
}
.ylobjecteditor-contentview .content-view-wrapper > .content-view {
	position: relative;
	width: 100%;
	height: 100%;	
}
.ylobjecteditor-contentview .content-view-wrapper > .content-properties-view {
	height: calc( 100% - 10px);
}
.ylobjecteditor-contentview .content-view-wrapper .content-view.no-view {
	background: url('../img/yenda-nopreview.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.ylinscription-viewer, .ylinscription-viewer > .ylinscription-viewer-content {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
}
.ylinscription-viewer {
	overflow: hidden;
}
.ylinscription-viewer > .ylinscription-viewer-content {
	background: white;
	border: 1px solid gray;
	overflow: auto;
	word-wrap: break-word;
}
.yllayer-viewer-container {
	position: absolute;
	background: url('../img/yenda-preview_loading.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.yllayer-viewer-container, .yllayer-viewer-container > .yllayer-viewer {
	z-index: 0;
	width: 100%;
	height: 100%;
}


/* Layer Editor */
.yllayereditor-layerlistview {
	background: white;
	height: 100%;
}
.yllayereditor-layerlist li {
	cursor: default;
	font-size: 12px;
	color: black;
	padding: 2px;
	padding-left: 10px;
	padding-right: 10px;
}
.yllayereditor-layerlist li.yl-layer-drop-target {
	background: #e6f0ff;
	outline: 1px solid #6ba3ff;
}
.yllayereditor-layerlist li span.list-item-color {
	padding-bottom: 0px;
	box-shadow: 0px 0px 1px #000;
}
.yllayereditor-layerlist li span.list-item-title {
	padding-left: 5px;
}

.yllayereditor-propertypanel {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 0;
	padding: 6px;
}
.yllayereditor-advanced-properties {
	flex: 0 0 auto;
	margin-bottom: 6px;
	border: 1px solid #C5C5C5;
	background: #F8F8F8;
}
.yllayereditor-advanced-summary {
	display: flex;
	align-items: center;
	min-height: 32px;
	gap: 7px;
	padding: 5px 7px;
	color: #25384d;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
}
.yllayereditor-advanced-summary::-webkit-details-marker {
	display: none;
}
.yllayereditor-advanced-summary:hover {
	background: #edf3f8;
}
.yllayereditor-advanced-summary:focus-visible {
	outline: 2px solid #4169aa;
	outline-offset: -2px;
}
.yl-layer-details-chevron {
	width: 12px;
	color: #52677e;
	text-align: center;
}
.yl-layer-details-title {
	flex: 1 1 auto;
}
.yl-layer-details-values {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #5d6c7a;
	font-weight: 500;
}
.yl-layer-summary-swatch {
	display: inline-block;
	width: 18px;
	height: 18px;
	border: 1px solid #59636d;
	border-radius: 3px;
	background: #CCCCCC;
}
.yl-layer-summary-opacity {
	min-width: 34px;
	font-variant-numeric: tabular-nums;
	text-align: right;
}
.yl-layer-summary-link {
	color: #9aa4ae;
}
.yl-layer-summary-link.is-linked {
	color: #4169aa;
}
.yllayereditor-layerpanel {
	display: flex;
	border-top: 1px solid #D4DADF;
	padding: 6px;
}
.yllayereditor-linkpanel {
	width: 8rem;
}
.yllayereditor-linkpanel .yl-layerprop-title {
	margin-bottom: 4px;
}
.yllayereditor-linktarget {
	width: 130px;
	height: 162px;
}
.yllayereditor-nolink {
	display: none;
	width: 130px;
	height: 162px;
	border: 1px solid #000000;
	background: #FFFFFF;
	font-size: 11px;
	line-height: 14px;
	text-align: center;
	padding: 8px;
}
.yl-linkdrop-active {
	box-shadow: 0 0 0 2px #1f6feb;
}
.yllayereditor-layerprops {
	flex: 1;
	margin-left: 10px;
	display: flex;
	flex-direction: column;
}
.yllayereditor-colorpanel,
.yllayereditor-opacitypanel {
	background: #FFFFFF;
	border: 1px solid #CCCCCC;
	padding: 6px;
	margin-bottom: 6px;
}
.yl-layerprop-title {
	font-size: 12px;
	font-weight: bold;
	margin-bottom: 4px;
}
.yl-layercolor-row {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 6px;
}
.yl-layercolor-swatch {
	width: 20px;
	height: 20px;
	border: 1px solid #333333;
	background: #CCCCCC;
}
.yl-layer-color-select {
	position: relative;
	flex: 1;
}
.yl-layer-color-select.disabled {
	opacity: 0.6;
}
.yl-layer-color-display {
	display: flex;
	align-items: center;
	gap: 6px;
	text-align: left;
}
.yl-layer-color-menu {
	display: none;
	position: absolute;
	top: calc(100% + 2px);
	left: 0;
	right: 0;
	background: #FFFFFF;
	border: 1px solid #CCCCCC;
	box-shadow: 0 2px 6px rgba(0,0,0,0.15);
	max-height: 220px;
	overflow-y: auto;
	z-index: 2000;
}
.yl-layer-color-menu.open {
	display: block;
}
.yl-layer-color-item {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 4px 6px;
	cursor: pointer;
}
.yl-layer-color-item:hover {
	background: #F0F0F0;
}
.yl-layer-color-item.active {
	background: #E6EEFF;
}
.yl-layer-color-label {
	flex: 1;
}
.yl-layer-color-select-native {
	display: none;
}
.yl-layer-color-picker {
	display: none;
}
.yl-layer-opacity-row {
	display: flex;
	align-items: center;
	gap: 6px;
}
.yl-layer-opacity-slider {
	flex: 1;
}
.yl-layer-opacity-fieldgroup {
	width: 80px;
}
.yllayereditor-metadata {
	flex: 1;
	min-height: 0;
	overflow: hidden;
}
.yllayereditor-metadata > .ylmetadatacontrol {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 0;
}
.yllayereditor-metadata > .ylmetadatacontrol > .yltextfield-rich {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-height: 120px;
}
.yllayereditor-metadata > .ylmetadatacontrol > .yltextfield-rich > .input-group,
.yllayereditor-metadata > .ylmetadatacontrol > .yltextfield-rich .note-editor {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-height: 0;
}
.yllayereditor-metadata > .ylmetadatacontrol > .yltextfield-rich .note-editing-area {
	display: flex;
	flex: 1 1 auto;
	min-height: 0;
}
.yllayereditor-metadata > .ylmetadatacontrol > .yltextfield-rich .note-editable {
	flex: 1 1 auto;
	height: auto !important;
	min-height: 90px;
	max-height: none !important;
	overflow-y: auto;
}

.yllayereditor-polygoneditorwrapper {
	display: flex;
	position: relative;
	width: 100%;
	height: 100%;
}
.yllayereditor-polygoneditortools {
	width: 32px;
	height: 100%;
	background-color: #F0F0F0;
	border-right: 1px solid #CCCCCC;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 6px;
}
.yllayereditor-polygoneditortools button.ylbutton {
	float: none;
	margin: 2px 0;
}
.ylpolygon-tools-separator {
	height: 10px;
	width: 100%;
}
.ylpolygon-zoom-control {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 8px;
}
.ylpolygon-zoom-label {
	font-size: 12px;
	line-height: 12px;
	color: #333333;
	width: 24px;
	text-align: center;
}
.ylpolygon-zoom-slider {
	-webkit-appearance: slider-vertical;
	writing-mode: bt-lr;
	width: 24px;
	height: 120px;
	margin: 4px 0;
}
.ylpolygon-move-hint {
	display: inline-block;
	max-width: calc(100% - 100px);
	margin-left: 12px;
	overflow: hidden;
	font-size: 11px;
	text-overflow: ellipsis;
	vertical-align: middle;
	white-space: nowrap;
}

.yl-context-menu {
	position: absolute;
	z-index: 2000;
	display: none;
	min-width: 200px;
	box-shadow: 0 18px 40px rgba(0,0,0,0.42), 0 0 0 1px rgba(11,21,35,0.28);
}
.yl-context-menu .dropdown-item {
	font-size: 12px;
	line-height: 1.4;
	display: flex;
	align-items: center;
	gap: 6px;
}
.yl-context-menu .yl-context-label {
	flex: 1 1 auto;
	min-width: 0;
}
.yl-context-menu .yl-context-icon {
	display: inline-block;
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	background-size: 16px 16px;
	background-repeat: no-repeat;
	vertical-align: text-bottom;
}
.yl-context-menu .yl-context-icon-create {
	background-image: url('../img/icons/create-menu.png');
}
.yl-context-menu .yl-context-icon-remove {
	background-image: url('../img/icons/link-remove.png');
}
.yl-context-menu .yl-context-icon-trash {
	background-image: url('../img/icons/trashcan-icon.png');
}
.yl-context-menu .yl-context-icon-delete {
	background-image: url('../img/icons/link-remove.png');
}
.yl-context-menu .yl-context-icon-copy {
	background-image: url('../img/icons/copy-menu.png');
}
.yl-context-menu .yl-context-icon-paste {
	background-image: url('../img/icons/paste-menu.png');
}
.yl-context-menu .yl-context-icon-colorbar {
	background-image: none;
	background-color: transparent;
	border: 1px solid #666666;
	border-radius: 2px;
	box-sizing: border-box;
}
.yl-context-menu .dropdown-item.disabled {
	color: #999999;
	pointer-events: none;
}
.yl-context-menu .yl-context-library-item {
	gap: 8px;
	padding-top: 4px;
	padding-bottom: 4px;
}
.yl-context-menu .yl-context-polygon-preview {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
}
.yl-context-menu .yl-context-polygon-preview svg {
	display: block;
	width: 48px;
	height: 48px;
}
.yl-context-menu .yl-context-library-index {
	min-width: 1.25rem;
	font-weight: 600;
	color: #2b2f33;
	text-align: right;
	flex: 0 0 auto;
}
.yl-context-menu .dropdown-item.disabled .yl-context-polygon-preview,
.yl-context-menu .dropdown-item.disabled .yl-context-library-index {
	opacity: 0.55;
}
.yl-context-submenu {
	position: relative;
}
.yl-context-submenu > .yl-context-submenu-toggle {
	display: flex;
	align-items: center;
	gap: 6px;
}
.yl-context-submenu > .dropdown-menu {
	position: absolute;
	top: 0;
	left: 100%;
	margin-left: 2px;
	display: none;
	box-shadow: 0 18px 40px rgba(0,0,0,0.42), 0 0 0 1px rgba(11,21,35,0.28);
}
.yl-context-submenu:hover > .yl-context-submenu-toggle:not(.disabled) + .dropdown-menu {
	display: block;
}
.yl-context-caret {
	margin-left: auto;
	width: 0;
	height: 0;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 6px solid currentColor;
	opacity: 0.75;
}
.yl-context-submenu > .yl-context-submenu-toggle.disabled .yl-context-caret {
	opacity: 0.35;
}
.yl-context-check {
	display: inline-block;
	width: 14px;
	flex: 0 0 14px;
	visibility: hidden;
	margin-right: 4px;
}
.yl-context-check.visible {
	visibility: visible;
}
.yllayereditor-polygoneditorview .yl-polygon-selected {
	stroke-width: 3 !important;
	filter: drop-shadow(0 0 2px rgba(0,0,0,0.6));
}
.yllayereditor-polygoneditorview .yl-polygon-active {
	stroke-width: 2 !important;
}
.leaflet-vertex-icon.yl-vertex-selected {
	background-color: #FFFFFF;
	box-shadow: 0 0 0 2px #000000;
	border-radius: 50%;
}
.leaflet-vertex-icon.yl-vertex-active {
	background-color: #FFFFFF;
	box-shadow: 0 0 0 2px rgba(0,0,0,0.5);
	border-radius: 50%;
}
.leaflet-vertex-icon.yl-vertex-hover {
	background-color: #FFFFFF;
	box-shadow: 0 0 0 2px rgba(0,0,0,0.25);
	border-radius: 50%;
}
.yllayereditor-polygoneditorview {
	width: 100%;
	height: 100%;
	z-index: 1;
}
.yllayereditor-polygoneditorview.yl-cursor-move,
.yllayereditor-polygoneditorview.yl-cursor-move .leaflet-interactive,
.yllayereditor-polygoneditorview.yl-cursor-move .leaflet-marker-icon,
.yllayereditor-polygoneditorview.yl-cursor-move .leaflet-vertex-icon {
	cursor: url("../img/cursors/cursorMove.png") 11 11, move;
}
.yllayereditor-polygoneditorview.yl-cursor-add,
.yllayereditor-polygoneditorview.yl-cursor-add .leaflet-interactive,
.yllayereditor-polygoneditorview.yl-cursor-add .leaflet-marker-icon,
.yllayereditor-polygoneditorview.yl-cursor-add .leaflet-vertex-icon {
	cursor: url("../img/cursors/crossAdd.png") 13 13, crosshair;
}
.yllayereditor-polygoneditorview.yl-cursor-remove,
.yllayereditor-polygoneditorview.yl-cursor-remove .leaflet-interactive,
.yllayereditor-polygoneditorview.yl-cursor-remove .leaflet-marker-icon,
.yllayereditor-polygoneditorview.yl-cursor-remove .leaflet-vertex-icon {
	cursor: url("../img/cursors/crossRemoveOrMove.png") 13 13, crosshair;
}
.yllayereditor-polygoneditorview.yl-cursor-close,
.yllayereditor-polygoneditorview.yl-cursor-close .leaflet-interactive,
.yllayereditor-polygoneditorview.yl-cursor-close .leaflet-marker-icon,
.yllayereditor-polygoneditorview.yl-cursor-close .leaflet-vertex-icon {
	cursor: url("../img/cursors/crossClosePath.gif") 12 12, crosshair;
}
.yllayereditor-polygoneditorview.yl-cursor-hand,
.yllayereditor-polygoneditorview.yl-cursor-hand .leaflet-interactive,
.yllayereditor-polygoneditorview.yl-cursor-hand .leaflet-marker-icon,
.yllayereditor-polygoneditorview.yl-cursor-hand .leaflet-vertex-icon {
	cursor: pointer;
}
.yllayereditor-polygoneditorview.yl-cursor-crosshair,
.yllayereditor-polygoneditorview.yl-cursor-crosshair .leaflet-interactive,
.yllayereditor-polygoneditorview.yl-cursor-crosshair .leaflet-marker-icon,
.yllayereditor-polygoneditorview.yl-cursor-crosshair .leaflet-vertex-icon {
	cursor: crosshair;
}
.yllayereditor-polygoneditorview.yl-cursor-default,
.yllayereditor-polygoneditorview.yl-cursor-default .leaflet-interactive,
.yllayereditor-polygoneditorview.yl-cursor-default .leaflet-marker-icon,
.yllayereditor-polygoneditorview.yl-cursor-default .leaflet-vertex-icon {
	cursor: default;
}
.yllayereditor-polygoneditorview.yl-cursor-resize,
.yllayereditor-polygoneditorview.yl-cursor-resize .leaflet-interactive,
.yllayereditor-polygoneditorview.yl-cursor-resize .leaflet-marker-icon,
.yllayereditor-polygoneditorview.yl-cursor-resize .leaflet-vertex-icon {
	cursor: nwse-resize;
}
.yllayereditor-polygoneditorview .leaflet-middle-icon {
	cursor: url("../img/cursors/crossAdd.png") 13 13, crosshair !important;
}
.yllayereditor-polygoneditorview .yl-selection-rect {
	stroke: #000000;
	stroke-width: 1px;
	fill: none;
}
.yllayereditor-polygoneditorview .yl-smart-selection-preview,
.yllayereditor-polygoneditorview .yl-smart-selection-preview.leaflet-interactive {
	pointer-events: none;
	filter: drop-shadow(0 0 3px rgba(0,0,0,0.35));
}
.yllayereditor-polygoneditorview .yl-rotate-handle {
	width: 10px;
	height: 10px;
	background: #ffffff;
	border: 1px solid #000000;
	border-radius: 50%;
	box-shadow: 0 0 0 1px rgba(255,255,255,0.8);
}
.yllayereditor-polygoneditorview .yl-scale-handle {
	width: 10px;
	height: 10px;
	background: #ffffff;
	border: 1px solid #000000;
	box-shadow: 0 0 0 1px rgba(255,255,255,0.8);
}

.yllayereditor-polygoneditorwrapper.loaded .yllayereditor-polygoneditorview .loadingindicator {
	display: none;
}

.yllayereditor-polygoneditorwrapper.loading .yllayereditor-polygoneditorview {
	background-image: url("../img/yenda-preview_loading.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}
.yllayereditor-polygoneditorwrapper.error .yllayereditor-polygoneditorview {
	background-image: url("../img/yenda-nopreview.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

/* Read-only operational overview. Status is always communicated through icon
 * and text as well as colour so the dashboard remains usable without colour. */
.yleditor .yleditor-settingspane .operational-status-panel {
	display: flex;
	flex-direction: column;
	gap: 1.15rem;
}

/* Private Publication editor: staged navigation follows the established dark
 * settings surface while keeping dense scholarly decisions readable. */
.yleditor .yleditor-settingspane .publication-editor-panel {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.yleditor .yleditor-settingspane .publication-editor-hero,
.yleditor .yleditor-settingspane .publication-editor-main-actions,
.yleditor .yleditor-settingspane .publication-editor-create,
.yleditor .yleditor-settingspane .publication-editor-list-item,
.yleditor .yleditor-settingspane .publication-editor-list-main,
.yleditor .yleditor-settingspane .publication-editor-catalog-actions,
.yleditor .yleditor-settingspane .publication-editor-order > li,
.yleditor .yleditor-settingspane .publication-editor-order-actions,
.yleditor .yleditor-settingspane .publication-editor-focus-row,
.yleditor .yleditor-settingspane .publication-editor-dependency,
.yleditor .yleditor-settingspane .publication-editor-rights-views > article,
.yleditor .yleditor-settingspane .publication-editor-pager {
	display: flex;
	align-items: center;
}
.yleditor .yleditor-settingspane .publication-editor-hero,
.yleditor .yleditor-settingspane .publication-editor-list-item,
.yleditor .yleditor-settingspane .publication-editor-order > li,
.yleditor .yleditor-settingspane .publication-editor-focus-row,
.yleditor .yleditor-settingspane .publication-editor-rights-views > article {
	justify-content: space-between;
}
.yleditor .yleditor-settingspane .publication-editor-hero { gap: 1rem; }
.yleditor .yleditor-settingspane .publication-editor-main-actions,
.yleditor .yleditor-settingspane .publication-editor-order-actions,
.yleditor .yleditor-settingspane .publication-editor-form-actions,
.yleditor .yleditor-settingspane .publication-editor-pager { gap: 0.5rem; }
.yleditor .yleditor-settingspane .publication-editor-intro,
.yleditor .yleditor-settingspane .publication-editor-help,
.yleditor .yleditor-settingspane .publication-editor-stage-header p,
.yleditor .yleditor-settingspane .publication-editor-meta,
.yleditor .yleditor-settingspane .publication-editor-status {
	color: rgba(231,239,255,0.76);
}
.yleditor .yleditor-settingspane .publication-editor-intro { max-width: 760px; margin: 0; line-height: 1.5; }
.yleditor .yleditor-settingspane .publication-editor-alert,
.yleditor .yleditor-settingspane .publication-editor-conflict,
.yleditor .yleditor-settingspane .publication-editor-empty {
	padding: 0.8rem 1rem;
	border-radius: 12px;
	background: rgba(5,14,25,0.38);
	border: 1px solid rgba(255,255,255,0.14);
}
.yleditor .yleditor-settingspane .publication-editor-alert { border-color: rgba(255,126,126,0.56); }
.yleditor .yleditor-settingspane .publication-editor-conflict { border-color: rgba(255,201,87,0.65); background: rgba(83,57,5,0.48); }
.yleditor .yleditor-settingspane .publication-editor-conflict p { margin: 0.4rem 0 0.7rem; }
.yleditor .yleditor-settingspane .publication-editor-status { min-height: 1.25rem; font-size: 0.82rem; }
.yleditor .yleditor-settingspane .publication-editor-create { gap: 0.65rem; }
.yleditor .yleditor-settingspane .publication-editor-create-label { min-width: 220px; }
.yleditor .yleditor-settingspane .publication-editor-filter { display: inline-flex; align-items: center; gap: 0.45rem; margin: 0.75rem 0; }
.yleditor .yleditor-settingspane .publication-editor-list,
.yleditor .yleditor-settingspane .publication-editor-list-main,
.yleditor .yleditor-settingspane .publication-editor-stage,
.yleditor .yleditor-settingspane .publication-editor-form,
.yleditor .yleditor-settingspane .publication-editor-language,
.yleditor .yleditor-settingspane .publication-editor-catalog,
.yleditor .yleditor-settingspane .publication-editor-focus,
.yleditor .yleditor-settingspane .publication-editor-rights-views {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.yleditor .yleditor-settingspane .publication-editor-list-item,
.yleditor .yleditor-settingspane .publication-editor-card {
	padding: 1rem;
	border: 1px solid rgba(255,255,255,0.13);
	border-radius: 14px;
	background: rgba(5,14,25,0.34);
}
.yleditor .yleditor-settingspane .publication-editor-list-main { align-items: flex-start; gap: 0.3rem; min-width: 0; }
.yleditor .yleditor-settingspane .publication-editor-list-item h3 { margin: 0; font-size: 1rem; }
.yleditor .yleditor-settingspane .publication-editor-meta { display: flex; flex-wrap: wrap; gap: 0.65rem; font-size: 0.76rem; }
.yleditor .yleditor-settingspane .publication-editor-meta code { color: rgba(230,238,255,0.64); }
.yleditor .yleditor-settingspane .publication-editor-state {
	display: inline-flex;
	width: fit-content;
	padding: 0.18rem 0.5rem;
	border-radius: 999px;
	background: rgba(122,164,232,0.2);
	border: 1px solid rgba(150,188,255,0.3);
	font-size: 0.72rem;
}
.yleditor .yleditor-settingspane .publication-editor-stages {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0.5rem;
	margin-bottom: 1rem;
}
.yleditor .yleditor-settingspane .publication-editor-stage-button {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	min-height: 44px;
	padding: 0.55rem 0.65rem;
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: 12px;
	background: rgba(255,255,255,0.05);
	color: #f3f7ff;
	text-align: left;
}
.yleditor .yleditor-settingspane .publication-editor-stage-button.active,
.yleditor .yleditor-settingspane .publication-editor-stage-button:focus-visible {
	background: rgba(92,140,214,0.28);
	border-color: rgba(150,188,255,0.55);
	outline: 2px solid rgba(182,209,255,0.8);
	outline-offset: 2px;
}
.yleditor .yleditor-settingspane .publication-editor-stage-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.6rem;
	height: 1.6rem;
	border-radius: 999px;
	background: rgba(255,255,255,0.14);
	font-weight: 700;
}
.yleditor .yleditor-settingspane .publication-editor-stage-header h3,
.yleditor .yleditor-settingspane .publication-editor-card h4 { margin: 0 0 0.35rem; }
.yleditor .yleditor-settingspane .publication-editor-language { padding: 0.9rem; border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; }
.yleditor .yleditor-settingspane .publication-editor-language legend { float: none; width: auto; margin: 0; color: #fff; font-size: 0.9rem; font-weight: 700; }
.yleditor .yleditor-settingspane .publication-editor-form label { margin-top: 0.2rem; font-weight: 600; }
.yleditor .yleditor-settingspane .publication-editor-form .form-control,
.yleditor .yleditor-settingspane .publication-editor-form .form-select,
.yleditor .yleditor-settingspane .publication-editor-search .form-control { color: #172235; background: #f7f9fc; }
.yleditor .yleditor-settingspane .publication-editor-form-actions { display: flex; flex-wrap: wrap; margin-top: 0.75rem; }
.yleditor .yleditor-settingspane .publication-editor-groups { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 0.6rem; margin: 0.65rem 0; }
.yleditor .yleditor-settingspane .publication-editor-choice,
.yleditor .yleditor-settingspane .publication-editor-layer {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.18rem;
	padding: 0.65rem;
	border: 1px solid rgba(255,255,255,0.16);
	border-radius: 10px;
	background: rgba(255,255,255,0.06);
	color: #fff;
	text-align: left;
}
.yleditor .yleditor-settingspane .publication-editor-choice:hover,
.yleditor .yleditor-settingspane .publication-editor-layer:hover { border-color: rgba(150,188,255,0.58); }
.yleditor .yleditor-settingspane .publication-editor-search { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 0.5rem; }
.yleditor .yleditor-settingspane .publication-editor-catalog-row { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 0.6rem; align-items: center; padding: 0.55rem; border-bottom: 1px solid rgba(255,255,255,0.09); }
.yleditor .yleditor-settingspane .publication-editor-order { display: flex; flex-direction: column; gap: 0.45rem; padding-left: 1.7rem; }
.yleditor .yleditor-settingspane .publication-editor-order > li { gap: 0.6rem; cursor: grab; }
.yleditor .yleditor-settingspane .publication-editor-order > li.dragging { opacity: 0.5; }
.yleditor .yleditor-settingspane .publication-editor-order > li.drag-target { outline: 2px solid rgba(182,209,255,0.8); outline-offset: 2px; }
.yleditor .yleditor-settingspane .publication-editor-object-open { border: 0; background: transparent; color: #fff; text-align: left; text-decoration: underline; text-underline-offset: 0.2rem; }
.yleditor .yleditor-settingspane .publication-editor-focus { margin: 0.75rem 0; padding: 0.8rem; border-left: 3px solid rgba(150,188,255,0.55); background: rgba(255,255,255,0.035); }
.yleditor .yleditor-settingspane .publication-editor-focus-row { flex-wrap: wrap; gap: 0.5rem; }
.yleditor .yleditor-settingspane .publication-editor-layers { display: grid; width: 100%; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0.4rem; }
.yleditor .yleditor-settingspane .publication-editor-layer.included { border-color: rgba(112,220,162,0.7); }
.yleditor .yleditor-settingspane .publication-editor-reseed { margin-top: 1rem; padding-top: 0.9rem; border-top: 1px solid rgba(255,255,255,0.12); }
.yleditor .yleditor-settingspane .publication-editor-reseed-controls { display: flex; align-items: flex-end; flex-wrap: wrap; gap: 0.6rem; }
.yleditor .yleditor-settingspane .publication-editor-reseed-controls label { display: flex; flex: 1 1 300px; flex-direction: column; gap: 0.25rem; font-weight: 600; }
.yleditor .yleditor-settingspane .publication-editor-reseed-source { color: #172235; background: #f7f9fc; }
.yleditor .yleditor-settingspane .publication-editor-reseed-preview { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; margin-top: 0.8rem; padding: 0.8rem; border: 1px solid rgba(150,188,255,0.38); border-radius: 10px; background: rgba(92,140,214,0.11); }
.yleditor .yleditor-settingspane .publication-editor-reseed-preview > h6,
.yleditor .yleditor-settingspane .publication-editor-reseed-preview > p,
.yleditor .yleditor-settingspane .publication-editor-reseed-preview > .publication-editor-form-actions { grid-column: 1 / -1; }
.yleditor .yleditor-settingspane .publication-editor-reseed-diff ul { max-height: 12rem; margin: 0.4rem 0 0; overflow: auto; }
.yleditor .yleditor-settingspane .publication-editor-dependency { flex-wrap: wrap; gap: 0.6rem; padding: 0.65rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.yleditor .yleditor-settingspane .publication-editor-dependency > p { margin: 0; }
.yleditor .yleditor-settingspane .publication-editor-tag-details { margin: 0.7rem 0; }
.yleditor .yleditor-settingspane .publication-editor-rights-form { max-width: 760px; }
.yleditor .yleditor-settingspane .publication-editor-rights-exception { width: 100%; margin-top: 0.7rem; padding: 0.8rem; border-left: 3px solid rgba(255,201,87,0.7); }
.yleditor .yleditor-settingspane .publication-editor-rights-object { padding: 0.75rem; border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; background: rgba(255,255,255,0.025); }
.yleditor .yleditor-settingspane .publication-editor-rights-object > header { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; margin-bottom: 0.35rem; }
.yleditor .yleditor-settingspane .publication-editor-rights-object > header h5 { margin: 0; }
.yleditor .yleditor-settingspane .publication-editor-rights-object > article { display: flex; align-items: center; flex-wrap: wrap; gap: 0.65rem; padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.yleditor .yleditor-settingspane .publication-editor-rights-object > article:last-of-type { border-bottom: 0; }
.yleditor .yleditor-settingspane .publication-editor-rights-object article > div { display: flex; flex: 1 1 200px; flex-direction: column; min-width: 180px; }
.yleditor .yleditor-settingspane .publication-editor-review dl { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0.65rem; }
.yleditor .yleditor-settingspane .publication-editor-review dl div { padding: 0.65rem; border-radius: 10px; background: rgba(255,255,255,0.06); }
.yleditor .yleditor-settingspane .publication-editor-review dt { font-size: 0.75rem; color: rgba(231,239,255,0.7); }
.yleditor .yleditor-settingspane .publication-editor-review dd { margin: 0.2rem 0 0; font-size: 1.15rem; font-weight: 700; }
.yleditor .yleditor-settingspane .publication-editor-issues { display: flex; flex-direction: column; gap: 0.45rem; padding: 0; list-style: none; }
.yleditor .yleditor-settingspane .publication-editor-issues li { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; padding: 0.55rem 0.65rem; border-left: 3px solid rgba(255,201,87,0.7); background: rgba(83,57,5,0.32); }
.yleditor .yleditor-settingspane .publication-editor-ready-note { padding: 0.8rem; border-left: 3px solid #72d7a1; background: rgba(50,126,85,0.22); }
@media (max-width: 980px) {
	.yleditor .yleditor-settingspane .publication-editor-stages { grid-template-columns: 1fr; }
	.yleditor .yleditor-settingspane .publication-editor-stage-button { min-height: 40px; }
}
@media (max-width: 640px) {
	.yleditor .yleditor-settingspane .publication-editor-hero,
	.yleditor .yleditor-settingspane .publication-editor-list-item,
	.yleditor .yleditor-settingspane .publication-editor-create { align-items: stretch; flex-direction: column; }
	.yleditor .yleditor-settingspane .publication-editor-main-actions { flex-wrap: wrap; }
	.yleditor .yleditor-settingspane .publication-editor-catalog-row { grid-template-columns: auto minmax(0, 1fr); }
	.yleditor .yleditor-settingspane .publication-editor-catalog-row small { grid-column: 2; }
	.yleditor .yleditor-settingspane .publication-editor-reseed-preview { grid-template-columns: minmax(0, 1fr); }
	.yleditor .yleditor-settingspane .publication-editor-reseed-preview > h6,
	.yleditor .yleditor-settingspane .publication-editor-reseed-preview > p,
	.yleditor .yleditor-settingspane .publication-editor-reseed-preview > .publication-editor-form-actions { grid-column: auto; }
}

.yleditor .yleditor-settingspane .operational-status-hero,
.yleditor .yleditor-settingspane .operational-status-summary,
.yleditor .yleditor-settingspane .operational-status-check-header,
.yleditor .yleditor-settingspane .operational-status-badge,
.yleditor .yleditor-settingspane .operational-status-observed,
.yleditor .yleditor-settingspane .operational-status-extension {
	display: flex;
	align-items: center;
}

.yleditor .yleditor-settingspane .operational-status-hero {
	position: relative;
	z-index: 1;
	justify-content: space-between;
	gap: 1.25rem;
}

.yleditor .yleditor-settingspane .operational-status-title {
	margin-bottom: 0.35rem;
}

.yleditor .yleditor-settingspane .operational-status-intro,
.yleditor .yleditor-settingspane .operational-status-assurance-note,
.yleditor .yleditor-settingspane .operational-status-extensions-note,
.yleditor .yleditor-settingspane .operational-status-incidents-note {
	max-width: 720px;
	margin: 0;
	color: rgba(231,239,255,0.75);
	line-height: 1.5;
}

.yleditor .yleditor-settingspane .operational-status-reload {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 0.45rem;
}

.yleditor .yleditor-settingspane .operational-status-summary {
	position: relative;
	z-index: 1;
	min-height: 42px;
	justify-content: space-between;
	gap: 0.8rem;
	padding: 0.7rem 0.85rem;
	border: 1px solid rgba(255,255,255,0.13);
	border-radius: 13px;
	background: rgba(5,14,25,0.34);
}

.yleditor .yleditor-settingspane .operational-status-updated,
.yleditor .yleditor-settingspane .operational-status-observed {
	color: rgba(221,232,249,0.68);
	font-size: 0.79rem;
}

.yleditor .yleditor-settingspane .operational-status-checks {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.8rem;
}

.yleditor .yleditor-settingspane .operational-status-check {
	min-width: 0;
	padding: 1rem;
	border: 1px solid rgba(255,255,255,0.13);
	border-left-width: 4px;
	border-radius: 14px;
	background: rgba(255,255,255,0.055);
}

.yleditor .yleditor-settingspane .operational-status-check:last-child:nth-child(odd) {
	grid-column: 1 / -1;
}

.yleditor .yleditor-settingspane .operational-status-check.state-healthy {
	border-left-color: #64c99a;
}

.yleditor .yleditor-settingspane .operational-status-check.state-degraded {
	border-left-color: #e9bd66;
}

.yleditor .yleditor-settingspane .operational-status-check.state-unavailable {
	border-left-color: #ef7f83;
}

.yleditor .yleditor-settingspane .operational-status-check.state-unknown {
	border-left-color: #9cacbf;
}

.yleditor .yleditor-settingspane .operational-status-check-header {
	justify-content: space-between;
	gap: 0.8rem;
}

.yleditor .yleditor-settingspane .operational-status-check-header h3,
.yleditor .yleditor-settingspane .operational-status-assurance-title,
.yleditor .yleditor-settingspane .operational-status-extensions-title,
.yleditor .yleditor-settingspane .operational-status-incidents-title {
	margin: 0;
	color: #fff;
	font-size: 0.98rem;
	font-weight: 700;
}

.yleditor .yleditor-settingspane .operational-status-check-detail {
	min-height: 2.8em;
	margin: 0.7rem 0 0.75rem;
	color: rgba(237,243,253,0.84);
	font-size: 0.84rem;
	line-height: 1.45;
}

.yleditor .yleditor-settingspane .operational-status-badge {
	flex: 0 0 auto;
	gap: 0.35rem;
	padding: 0.25rem 0.48rem;
	border: 1px solid currentColor;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
}

.yleditor .yleditor-settingspane .operational-status-badge.state-healthy {
	color: #94e7bd;
}

.yleditor .yleditor-settingspane .operational-status-badge.state-degraded {
	color: #f3d28d;
}

.yleditor .yleditor-settingspane .operational-status-badge.state-unavailable {
	color: #ffadb0;
}

.yleditor .yleditor-settingspane .operational-status-badge.state-unknown {
	color: #c0ccda;
}

.yleditor .yleditor-settingspane .operational-status-badge.state-not-configured {
	color: #b8c4d3;
	border-style: dashed;
}

.yleditor .yleditor-settingspane .operational-status-observed {
	gap: 0.38rem;
}

.yleditor .yleditor-settingspane .operational-status-notice {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	width: 100%;
	color: rgba(238,244,255,0.88);
}

.yleditor .yleditor-settingspane .operational-status-notice.tone-error {
	color: #ffbdc0;
}

.yleditor .yleditor-settingspane .operational-status-assurance {
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .operational-status-assurance-note {
	margin-top: 0.4rem;
	font-size: 0.84rem;
}

.yleditor .yleditor-settingspane .operational-status-assurance-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.65rem;
	margin-top: 0.9rem;
}

.yleditor .yleditor-settingspane .operational-status-assurance-check {
	background: rgba(5,14,25,0.28);
}

.yleditor .yleditor-settingspane .operational-status-assurance-check:last-child:nth-child(odd) {
	grid-column: auto;
}

.yleditor .yleditor-settingspane .operational-status-assurance-check .operational-status-check-header {
	align-items: flex-start;
	flex-direction: column;
}

.yleditor .yleditor-settingspane .operational-status-assurance-check .operational-status-check-detail {
	min-height: 4.15em;
}

.yleditor .yleditor-settingspane .operational-status-incidents {
	position: relative;
	z-index: 1;
}

.yleditor .yleditor-settingspane .operational-status-incidents-note {
	margin-top: 0.4rem;
	font-size: 0.84rem;
}

.yleditor .yleditor-settingspane .operational-status-incidents-summary,
.yleditor .yleditor-settingspane .operational-status-copy-status,
.yleditor .yleditor-settingspane .operational-status-incidents-empty {
	color: rgba(222,232,247,0.68);
	font-size: 0.78rem;
}

.yleditor .yleditor-settingspane .operational-status-incidents-summary {
	margin-top: 0.75rem;
}

.yleditor .yleditor-settingspane .operational-status-copy-status {
	min-height: 1.25rem;
	margin-top: 0.15rem;
}

.yleditor .yleditor-settingspane .operational-status-incident-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.65rem;
}

.yleditor .yleditor-settingspane .operational-status-incident {
	min-width: 0;
	padding: 0.75rem;
	border: 1px solid rgba(255,255,255,0.12);
	border-left: 3px solid #e9bd66;
	border-radius: 11px;
	background: rgba(5,14,25,0.28);
}

.yleditor .yleditor-settingspane .operational-status-incident.severity-error,
.yleditor .yleditor-settingspane .operational-status-incident.severity-critical {
	border-left-color: #ef7f83;
}

.yleditor .yleditor-settingspane .operational-status-incident-header,
.yleditor .yleditor-settingspane .operational-status-incident-severity,
.yleditor .yleditor-settingspane .operational-status-incident-meta,
.yleditor .yleditor-settingspane .operational-status-incident-reference {
	display: flex;
	align-items: center;
}

.yleditor .yleditor-settingspane .operational-status-incident-header {
	justify-content: space-between;
	gap: 0.6rem;
}

.yleditor .yleditor-settingspane .operational-status-incident-header h4 {
	margin: 0;
	color: #fff;
	font-size: 0.86rem;
	font-weight: 700;
}

.yleditor .yleditor-settingspane .operational-status-incident-severity {
	flex: 0 0 auto;
	gap: 0.3rem;
	color: #f3d28d;
	font-size: 0.7rem;
	font-weight: 700;
}

.yleditor .yleditor-settingspane .operational-status-incident-severity.severity-error,
.yleditor .yleditor-settingspane .operational-status-incident-severity.severity-critical {
	color: #ffadb0;
}

.yleditor .yleditor-settingspane .operational-status-incident-meta {
	flex-wrap: wrap;
	gap: 0.3rem 0.75rem;
	margin-top: 0.45rem;
	color: rgba(222,232,247,0.68);
	font-size: 0.74rem;
}

.yleditor .yleditor-settingspane .operational-status-incident-reference {
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-top: 0.65rem;
	padding-top: 0.55rem;
	border-top: 1px solid rgba(255,255,255,0.08);
}

.yleditor .yleditor-settingspane .operational-status-reference-label {
	color: rgba(222,232,247,0.62);
	font-size: 0.72rem;
}

.yleditor .yleditor-settingspane .operational-status-incident-reference code {
	min-width: 0;
	overflow-wrap: anywhere;
	color: #cfe0fb;
	font-size: 0.72rem;
	user-select: all;
}

.yleditor .yleditor-settingspane .operational-status-copy-reference {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	margin-left: auto;
	font-size: 0.7rem;
}

.yleditor .yleditor-settingspane .operational-status-incidents-empty {
	grid-column: 1 / -1;
	padding: 0.8rem;
	border-radius: 10px;
	background: rgba(255,255,255,0.045);
}

.yleditor .yleditor-settingspane .operational-status-extensions {
	margin-top: 0.2rem;
}

.yleditor .yleditor-settingspane .operational-status-extensions-note {
	margin-top: 0.4rem;
	font-size: 0.84rem;
}

.yleditor .yleditor-settingspane .operational-status-extension-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.6rem;
	margin-top: 0.9rem;
}

.yleditor .yleditor-settingspane .operational-status-extension {
	justify-content: space-between;
	gap: 0.6rem;
	padding: 0.65rem 0.7rem;
	border-radius: 10px;
	background: rgba(255,255,255,0.055);
	font-size: 0.8rem;
}

.yleditor .yleditor-settingspane .operational-status-not-configured {
	color: rgba(222,232,247,0.58);
	font-size: 0.72rem;
}

@media (max-width: 880px) {
	.yleditor .yleditor-settingspane .operational-status-checks,
	.yleditor .yleditor-settingspane .operational-status-assurance-list,
	.yleditor .yleditor-settingspane .operational-status-extension-list,
	.yleditor .yleditor-settingspane .operational-status-incident-list {
		grid-template-columns: minmax(0, 1fr);
	}

	.yleditor .yleditor-settingspane .operational-status-check:last-child:nth-child(odd) {
		grid-column: auto;
	}

	.yleditor .yleditor-settingspane .operational-status-hero,
	.yleditor .yleditor-settingspane .operational-status-summary {
		align-items: flex-start;
		flex-direction: column;
	}
}

/* First-use guidance follows the existing dark-blue shell without looking like
 * another perspective tab. The four shade panels form a true spotlight hole. */
.yleditor .yleditor-tabpane .yendaui-tablist {
	bottom: 170px;
}

.yleditor .yleditor-helppane {
	position: absolute;
	right: 2px;
	bottom: 66px;
	left: 2px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(255,255,255,0.12);
}

.yenda-shell-utility,
.yenda-help-trigger {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid rgba(151,187,239,0.3);
	background: rgba(255,255,255,0.07);
	color: rgba(230,240,255,0.9);
	font-size: 18px;
	cursor: pointer;
	transition: border-color 0.14s ease, background-color 0.14s ease, color 0.14s ease;
}

.yenda-shell-utility {
	border-radius: 10px;
}

.yenda-help-trigger {
	border-radius: 50%;
}

.yenda-shell-utility:hover,
.yenda-shell-utility:focus-visible,
.yenda-help-trigger:hover,
.yenda-help-trigger:focus-visible {
	outline: none;
	border-color: rgba(151,187,239,0.68);
	background: rgba(65,105,170,0.34);
	color: #fff;
}

.yenda-fullscreen-trigger.active,
.yenda-fullscreen-trigger[aria-pressed="true"] {
	border-color: rgba(151,187,239,0.78);
	background: #4169aa;
	color: #fff;
}

.yenda-shell-utility:disabled {
	cursor: not-allowed;
	opacity: 0.42;
}

.ylo-onboarding-overlay {
	position: fixed;
	inset: 0;
	z-index: 9999;
	overflow: hidden;
}

.ylo-onboarding-shade {
	position: absolute;
	background: rgba(8,19,33,0.76);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	transition: top 0.2s ease, left 0.2s ease, width 0.2s ease, height 0.2s ease;
}

.ylo-onboarding-spotlight {
	position: absolute;
	border: 2px solid rgba(169,200,247,0.96);
	border-radius: 10px;
	box-shadow: 0 0 0 4px rgba(65,105,170,0.28), 0 0 24px rgba(116,157,218,0.5);
	cursor: default;
	transition: top 0.2s ease, left 0.2s ease, width 0.2s ease, height 0.2s ease;
}

.ylo-onboarding-tooltip {
	position: absolute;
	z-index: 1;
	padding: 1.15rem 1.25rem 1rem;
	border: 1px solid rgba(151,187,239,0.36);
	border-radius: 14px;
	background: linear-gradient(155deg, rgba(16,27,43,0.99), rgba(35,62,101,0.99));
	box-shadow: 0 16px 46px rgba(0,0,0,0.44);
	color: #f3f7ff;
}

.ylo-onboarding-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-bottom: 0.65rem;
	border-radius: 10px;
	background: #4169aa;
	box-shadow: 0 3px 10px rgba(26,55,96,0.42);
	font-size: 18px;
}

.ylo-onboarding-kicker {
	margin-bottom: 0.28rem;
	color: rgba(201,219,255,0.72);
	font-size: 0.68rem;
	font-weight: 750;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.ylo-onboarding-title {
	margin: 0 0 0.45rem;
	font-size: 1.12rem;
	font-weight: 700;
	line-height: 1.25;
}

.ylo-onboarding-description {
	margin: 0 0 0.85rem;
	color: rgba(238,244,255,0.84);
	font-size: 0.9rem;
	line-height: 1.5;
}

.ylo-onboarding-progress {
	display: flex;
	gap: 5px;
	margin-bottom: 0.9rem;
}

.ylo-onboarding-progress span {
	width: 20px;
	height: 3px;
	border-radius: 3px;
	background: rgba(201,219,255,0.2);
}

.ylo-onboarding-progress span.active {
	background: #85a9dd;
}

.ylo-onboarding-actions {
	display: flex;
	align-items: center;
	gap: 0.45rem;
}

.ylo-onboarding-btn-primary {
	min-width: 76px;
	margin-left: auto;
	font-weight: 650;
}

.ylo-onboarding-btn-skip {
	padding-left: 0;
	color: rgba(231,239,255,0.66);
	font-size: 0.8rem;
	text-decoration: none;
}

.ylo-onboarding-btn-skip:hover,
.ylo-onboarding-btn-skip:focus-visible {
	color: #fff;
	text-decoration: underline;
}

.ylo-onboarding-btn-secondary:hover,
.ylo-onboarding-btn-secondary:focus-visible {
	border-color: rgba(255,255,255,0.48);
	background: rgba(255,255,255,0.12);
	color: #fff;
}

@media (max-width: 540px) {
	.ylo-onboarding-tooltip {
		left: 12px !important;
		top: auto !important;
		bottom: 12px;
		width: calc(100vw - 24px) !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.yenda-help-trigger,
	.yenda-shell-utility,
	.ylcomponent-frame > .frame-titlebar > .frame-help,
	.ylo-onboarding-shade,
	.ylo-onboarding-spotlight {
		transition: none;
	}
}
