/**
 * CSS for KYC restricted buttons and tooltip
 */

.kyc-restricted-btn {
	opacity: 0.6;
	cursor: not-allowed;
	position: relative;
}

.kyc-tooltip-26069 {
	visibility: hidden;
	background-color: #333;
	color: #fff;
	text-align: center;
	border-radius: 4px;
	padding: 8px 12px;
	position: absolute;
	z-index: 9999;
	bottom: 125%; /* Position above the button */
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	transition: opacity 0.3s;
	font-size: 13px;
	white-space: nowrap;
	box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
	pointer-events: none;
}

.kyc-tooltip-26069::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #333 transparent transparent transparent;
}

.kyc-restricted-btn:hover .kyc-tooltip-26069,
.kyc-tooltip-26069.show {
	visibility: visible;
	opacity: 1;
}
