.e-jump-top-floating {
    
    position: fixed;
    width: 50px; /* Slightly smaller than WhatsApp button */
    height: 50px;
    bottom: 40px; /* Position it above the WhatsApp button if both are enabled */
    left: 50px;
    background-color: #1e056c; /* Example blue color */
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    z-index: 999; /* Lower z-index than WhatsApp so WhatsApp is on top if overlapping */
    opacity: 0.8; /* Slightly transparent */
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em; /* Adjust icon size */
    text-decoration: none; /* Remove underline from link */
}

.e-jump-top-floating:hover {
    background-color: #2d0e88; /* Darker blue on hover */
    opacity: 1;
 
}

/* You can add an icon or text inside the button in JavaScript (see next step) */
/* Example: Using a simple up arrow icon (you can replace with an image icon) */
.e-jump-top-floating::after {
    content: "\2191"; /* Unicode up arrow */
    line-height: 0; /* Vertically center the arrow */
    color: white;
}