.lqt-dev-indicator {
	position: fixed;
	top: 12px;
	right: 0;
	z-index: 9999;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	overflow: visible;
	max-width: min(420px, calc(100vw - 16px));
	padding: 10px 14px 10px 10px;
	border: 1px solid #f0ad4e;
	border-right: 0;
	border-radius: 10px 0 0 10px;
	background: #fff7e6;
	box-shadow: 0 4px 12px rgba(240, 173, 78, 0.18);
	color: #ad6800;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	transition: max-width 0.24s ease, padding 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, filter 0.24s ease;
}

.lqt-dev-indicator__icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border: 1px solid #f0ad4e;
	border-radius: 50%;
	background: #fff7e6;
	color: #ad6800;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	transition: all 0.24s ease;
}

.lqt-dev-indicator__text {
	display: inline-block;
	max-width: 280px;
	overflow: hidden;
	white-space: nowrap;
	opacity: 1;
	transform: translateX(0);
	transition: max-width 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.lqt-dev-indicator__toggle {
	order: -1;
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	margin-right: 2px;
	padding: 0 10px 0 0;
	border: 0;
	border-right: 1px solid rgba(240, 173, 78, 0.45);
	background: transparent;
	color: #ad6800;
	cursor: pointer;
	opacity: 0.85;
	transform: translateX(0);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.lqt-dev-indicator__toggle:hover {
	opacity: 1;
}

.lqt-dev-indicator__toggle:focus {
	outline: none;
}

.lqt-dev-indicator__toggle-icon {
	display: block;
	width: 8px;
	height: 8px;
	background: center / 8px 8px no-repeat url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'><path d='M2.25 1.25L5.5 4L2.25 6.75' fill='none' stroke='%23ad6800' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.lqt-dev-indicator__tooltip {
	position: absolute;
	top: calc(100% + 8px);
	right: 10px;
	display: none;
	min-width: 140px;
	max-width: min(320px, calc(100vw - 32px));
	padding: 8px 12px;
	border: 1px solid #f0ad4e;
	border-radius: 6px;
	background: #fffaf0;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
	color: #8a5a00;
	font-size: 13px;
	font-weight: 500;
	line-height: 18px;
	text-align: center;
	white-space: normal;
	word-break: break-all;
}

.lqt-dev-indicator__tooltip:before {
	content: "";
	position: absolute;
	top: -6px;
	right: 18px;
	width: 10px;
	height: 10px;
	border-top: 1px solid #f0ad4e;
	border-left: 1px solid #f0ad4e;
	background: #fffaf0;
	transform: rotate(45deg);
}

.lqt-dev-indicator__tooltip.is-visible {
	display: block;
}

.lqt-dev-indicator.is-collapsed {
	width: 48px;
	max-width: 48px;
	height: 58px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	cursor: pointer;
	filter: drop-shadow(-2px 4px 10px rgba(240, 173, 78, 0.22));
}

.lqt-dev-indicator.is-collapsed:before {
	content: "";
	position: absolute;
	inset: 0;
	background: center / 100% 100% no-repeat url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 58'><path d='M38 4C41 4 42.5 6 42.5 9V49C42.5 52 41 54 38 54L13.5 38C8.5 34.5 6.5 31.5 6.5 29C6.5 26.5 8.5 23.5 13.5 20L38 4Z' fill='%23fff7e6' stroke='%23f0ad4e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.lqt-dev-indicator.is-collapsed .lqt-dev-indicator__icon {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	transform: translate(-50%, -50%);
}

.lqt-dev-indicator.is-collapsed .lqt-dev-indicator__text,
.lqt-dev-indicator.is-collapsed .lqt-dev-indicator__toggle {
	max-width: 0;
	opacity: 0;
	transform: translateX(-8px);
	pointer-events: none;
}