/* Floating Next Button Design by Web Insights */

.webinsights-float-social-wrapper {
    position: fixed;
    right: 20px; /* Changed from left to right */
    top: 60%; /* Slightly below center for thumb reach */
    z-index: 9999;
    opacity: 0; /* Initially hidden */
    visibility: hidden; /* Initially hidden */
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.webinsights-float-social-wrapper.visible {
    opacity: 1; /* Show when scrolled 40% */
    visibility: visible;
}

.webinsights-float-social-sharing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* Space between text and arrow */
    padding: 12px 16px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.5); /* Transparent black */
    color: #E0E0E0; /* Dark white/off-white text */
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.webinsights-social-next:hover {
    background-color: rgba(0, 0, 0, 0.7); /* Slightly darker on hover */
}

.webinsights-social-next svg {
    stroke: #E0E0E0; /* Dark white arrow */
    width: 18px;
    height: 18px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .webinsights-float-social-wrapper {
        right: 15px; /* Changed from left to right */
        top: 65%; /* Slightly lower for thumb reach */
    }

    .webinsights-float-social-sharing {
        padding: 10px 14px;
        font-size: 13px;
    }
}