.cybernext-scrollto-wrapper {
	background-color: #F8F8F8;
	padding: 30px;
	border-radius: 16px;
}

.cybernext-scrollto-title {
	font-size: 20px;
	font-weight: 700;
	color: #262626;
	margin-top: 0;
	margin-bottom: 20px;
	text-align: center;
}

.cybernext-scrollto-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
}

.cybernext-scrollto-item {
	margin: 0;
	padding: 0;
	position: relative;
}

.cybernext-scrollto-item:not(:last-child)::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 20px;
	right: 20px;
	height: 1px;
	background-color: #E6E6E6;
}

.cybernext-scrollto-link {
	display: flex;
	align-items: center;
	padding: 16px 20px;
	border-radius: 12px;
	text-decoration: none;
	color: #666666;
	font-weight: 500;
	font-size: 16px;
	transition: all 0.3s ease;
	background-color: transparent;
	margin: 4px 0;
	gap: 12px;
	justify-content: flex-end;
}

.cybernext-scrollto-link:hover,
.cybernext-scrollto-link:focus {
	color: #D85829;
}

.cybernext-scrollto-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.cybernext-scrollto-icon svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

/* Active State */
.cybernext-scrollto-link.active {
	background-color: #D85829;
	color: #FFFFFF;
}

.cybernext-scrollto-link.active .cybernext-scrollto-icon svg {
	fill: #FFFFFF;
}
