#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #26422c; /* New color */
    color: white;
    border: none;
    border-radius: 50%; /* Ensures the button is perfectly round */
    font-size: 20px;
    padding: 15px; /* Increased padding for better visibility */
    display: none;
    cursor: pointer;
    width: 50px; /* Set width to make the button round */
    height: 50px; /* Set height to make the button round */
    text-align: center;
    line-height: 20px;
}

#backToTop:hover {
    background-color: #1d3825; /* Darker shade for hover effect */
}
