/* From ChatGPT: CSS for the return to top button */

#scrollToTopButton {
    display: none; /* Initially hide the button */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 16px;
}

#scrollToTopButton:hover {
    background-color: #0056b3;
}
