        /* Style for the Go to Top button */
        #goToTop {
            position: fixed;
            bottom: 20px;
            right: 20px;
            display: none; /* Hidden by default */
            background-color: #007bff; /* Bootstrap primary color */
            color: white;
            border: none;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            font-size: 24px;
            text-align: center;
            line-height: 60px;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            transition: opacity 0.3s, transform 0.3s;
            z-index: 1000; /* Ensure button is on top */
        }

        #goToTop:hover {
            background-color: #0056b3;
            transform: scale(1.1); /* Slight zoom effect */
        }

        #goToTop.show {
            display: block;
        }