.udi-scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: #00867d; /* Teal brand color for UDI */
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border: none;
	box-shadow: 0 4px 12px rgba(0, 134, 125, 0.3);
	transition: all 0.3s ease;
	z-index: 9999;
	opacity: 1;
	font-size: 22px;
	font-weight: bold;
	line-height: 1;
}
.udi-scroll-top.hidden {
	opacity: 0;
	pointer-events: none;
	transform: translateY(20px);
}
.udi-scroll-top:hover {
	background: #006b64;
	transform: translateY(-3px);
}
@media (max-width: 768px) {
	.udi-scroll-top { bottom: 16px; right: 16px; width: 42px; height: 42px; }
}
