/* Scroll Navigation Icons */
.scroll-nav {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.scroll-btn {
	width: 40px;
	height: 40px;
	background: #337ab7;
	color: white;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.scroll-btn:hover, .scroll-btn:focus, .scroll-btn:active {
    color: white;
	text-decoration: none;
}
.scroll-btn:hover {
	background: #23527c;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.scroll-btn:active {
	transform: translateY(0);
}

.scroll-btn.hidden {
	opacity: 0;
	pointer-events: none;
}

/* Responsive design */
@media (max-width: 768px) {
	.scroll-nav {
		bottom: 15px;
		right: 15px;
	}
	.scroll-btn {
		width: 35px;
		height: 35px;
		font-size: 14px;
	}
}

/* Dark theme support */
@media (prefers-color-scheme: dark) {
	.scroll-btn {
		background: #4a90e2;
	}
	.scroll-btn:hover {
		background: #357abd;
	}
} 