#backToTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: none;
            z-index: 9999;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #338C79;
            color: white;
            border: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.25);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        #backToTop.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        #backToTop:hover {
            background-color: #2a7563;
            transform: scale(1.1);
        }
        
        #backToTop i {
            font-size: 1.2rem;
        }