/* ----- TOP OF THE SITE ----- */
#backToTopBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 15%; /* Position the button at the middle right corner */
    right: 10px; /* 10px from the right */
    z-index: 99; /* Make sure it does not overlap other content */
    cursor: pointer; /* Add a mouse pointer on hover */
    transition: transform 0.3s; /* Smooth transition */
}

#backToTopBtn img {
    width: 50px; /* Width of the image */
    height: 50px; /* Height of the image */
}

#backToTopBtn:hover {
    transform: scale(1.2); /* Slightly enlarge on hover */
}
/* ----- TOP OF THE SITE ----- */
