/**
 * Riin Agency Chatbot — close button styling.
 *
 * The button is appended inside the widget root, which is positioned
 * (typically fixed) by the widget itself, so absolute positioning here
 * tracks the widget wherever it sits.
 */

.ra-chatbot-close {
	position: absolute;
	top: -10px;
	right: -6px;
	z-index: 2147483647;
	width: 24px;
	height: 24px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #333333;
	color: #ffffff;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	cursor: pointer;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.ra-chatbot-close:hover {
	background: #000000;
}

.ra-chatbot-close:focus-visible {
	outline: 2px solid #ffffff;
	outline-offset: 1px;
}
