#scrollUpBtn {
	position: fixed;
	bottom: 40px;
	right: 30px;
	z-index: 99;
	width: 50px;
	height: 50px;
	font-size: 24px;
	background-color: #f15231;
	color: white;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: none;
	box-shadow: 0 4px 8px rgba(0,0,0,0.3);
	transition: background-color 0.3s ease, opacity 0.3s ease;
	line-height: 50px;
	text-align: center;
	padding: 0;
	}

#scrollUpBtn:hover {
	background-color: #d14028;
	}