.sasha-widget-container {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 9999;
	font-family: Arial, sans-serif;
	width: 400px;
	max-width: 100%;
}

.sasha-widget-button {
	width: 56px;
	height: 56px;
	background: #6894AA;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s;
	position: absolute;
	bottom: 0;
	right: 0;
	border: none;
}

	.sasha-widget-button:hover {
		background: #5a7a8a;
	}

.sasha-widget-button-icon {
	font-size: 28px;
	color: #EAEAEA;
	user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

.sasha-widget-content {
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s;
	background: #fff;
	border-radius: 12px 12px 0 12px;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
	padding: 0;
	position: absolute;
	bottom: 0;
	right: 0;
	margin-bottom: 64px;
}

	.sasha-widget-content.visible {
		visibility: visible;
		opacity: 1;
		pointer-events: auto;
	}

.sasha-widget-frame {
	border: none;
	border-radius: 12px 12px 0 12px;
	display: block;
}
