/* Контейнер для кнопок — сразу после элемента */
.ui-help-container {
	position: relative;
	display: inline-block;
	width: 100%;
}	

/* Кнопка "?" — в правом верхнем углу элемента */
.help-btn {
	width: 24px;
	height: 24px;
	background-color: #615CED;
	color: white;
	border: none;
	border-radius: 6px;
	font-size: 12px;
	font-weight: bold;
	line-height: 1;
	text-align: center;
	position: absolute;
	top: -30px;
 /*   right: -24px; */
	z-index: 1000;
	box-shadow: 0 1px 3px rgba(0,0,0,0.3);
	transition: background-color 0.2s, transform 0.1s;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.help-btn:hover {
	background-color: #005a87;
}

/* Всплывающая подсказка */
.help-tooltip {
	position: absolute;
	width: 200px;
	background-color: #333;
	color: #fff;
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 14px;
	z-index: 1100;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.2s;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
	white-space: normal;
	word-wrap: break-word;
	top: 100%;
	left: 0;
	margin-top: 6px;
	margin-left: -26px;
}
