#backToTopBtn {
position: fixed;
bottom: 30px;
right: 30px;
z-index: 99;
width: 50px;
height: 50px;
font-size: 20px;
background-color: #E10600; /* Updated color */
color: white;
border: none;
border-radius: 50%; /* Makes it a perfect circle */
cursor: pointer;
display: none; /* Hidden by default */
box-shadow: 0 4px 6px rgba(0,0,0,0.2);
transition: background-color 0.3s ease;
text-align: center;
line-height: 50px; /* Vertically center the icon */
}

#backToTopBtn:hover {
background-color: #001f4d; /* Slightly darker hover color */
}
