.floating-button {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background: #007bff;
	color: #fff;
	padding: 10px 11px;
	border-radius: 50%;
	font-size: 22px;
	z-index: 999;
	cursor: pointer;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
	transition: 0.3s;
}
.social-widget-box {
	display: none;
}
.social-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: center;
	margin-bottom: 10px;
}
.btn-social {
	flex: 1 1 45%;
	padding: 8px;
	background: #ccc;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: 0.3s;
}
.btn-social:hover {
	background: #999;
	color: #fff;
}
.social-content {
	display: none;
	background: #fff;
	border: 1px solid #ddd;
	padding: 10px;
	border-radius: 6px;
	margin-top: 5px;
	font-size: 14px;
}

.btn-back {
  position: fixed;
  bottom: 100px;
  right: 70px;
  background: #dc3545;
  color: #fff;
  padding: 10px 14px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

