/* Floating Open Next Button Design */

.webinsights-float-social-wrapper {
    position: fixed;
    right: 20px;
    top: 60%;
    z-index: 9999;
}

.webinsights-float-social-sharing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 10px;
    background-color: #007BFF; /* Blue background */
    color: #fff; /* White text */
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.webinsights-social-next:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: scale(1.05);
}

.webinsights-social-next svg {
    stroke: #fff; /* White arrow */
    width: 20px;
    height: 20px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .webinsights-float-social-wrapper {
        right: 15px;
        top: 65%;
    }

    .webinsights-float-social-sharing {
        padding: 12px 18px;
        font-size: 15px;
    }
}
