.stt-btn-dace7969 {
	position: fixed;
	bottom: 20px;
	width: var(--stt-size, 50px);
	height: var(--stt-size, 50px);
	background-color: var(--stt-bg, #ff0000); /* Changed default fallback */
	color: var(--stt-color, #ffffff);
	border: none;
	border-radius: var(--stt-radius, 50%);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	z-index: 99999;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
	transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease, color 0.2s ease;
	opacity: 0;
	pointer-events: none;
}

.stt-btn-dace7969 svg {
	width: 48%;
	height: 48%;
	fill: currentColor;
}

/* Position */
.stt-pos-bottom-right {
	right: 20px;
}
.stt-pos-bottom-left {
	left: 20px;
}

/* Hover States */
.stt-btn-dace7969:hover {
	background-color: var(--stt-hover-bg, #111111);
	color: var(--stt-hover-color, #ffffff);
}

/* Animations */
.stt-btn-dace7969.stt-visible {
	opacity: 1;
	pointer-events: auto;
}

.stt-anim-slide-in {
	transform: translateY(30px);
}
.stt-anim-slide-in.stt-visible {
	transform: translateY(0);
}

/* Hide on Mobile */
@media (max-width: 768px) {
	.stt-btn-dace7969.stt-hide-mobile {
		display: none !important;
	}
}
