.social-floating-panel {
	position: fixed;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1000;
	background-color: rgba(255, 255, 255, 0.95);
	border-radius: 0 12px 12px 0;
	box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
	padding: 15px 10px;
}

.social-floating-panel ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.social-floating-panel ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background-color: #f5f5f5;
	color: #333;
	transition: all 0.3s ease;
}

.social-floating-panel ul li a:hover {
	background-color: #e74c3c;
	color: #fff;
	transform: scale(1.1);
}

.social-floating-panel ul li a span {
	font-size: 22px;
}

@media (max-width: 768px) {
	.social-floating-panel {
		display: none;
	}
}
