@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.wp-support-button-container {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 9999 !important;
}

.wp-support-button-container .wp-support-button-main {
    background-color: #268b2a; /* A clear green */
    color: white;
    border: none;
    border-radius: 50%;
    width: 70px; /* Slightly larger button */
    height: 70px; /* Slightly larger button */
    display: flex;
    flex-direction: column; /* Stack icon and text vertically */
    align-items: center;
    justify-content: center;
    cursor: pointer; /* Ensure cursor is a pointer for the div */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* More pronounced shadow */
    transition: all 0.4s ease-in-out; /* Slower, smoother transition */
    animation: pulse 2s infinite cubic-bezier(0.66, 0, 0.34, 1); /* More natural pulse */
    /* Explicitly setting text properties that might be reset by browser defaults for div */
    font-family: inherit;
    font-size: 16px; /* Base font size for the button content */
    line-height: 1; /* Adjust line height for better alignment */
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
}

.wp-support-button-container .wp-support-button-main i {
    font-size: 36px!important; /* Even larger icon */
    margin: 0!important; /* Remove any margins if only icon */
}

.wp-support-button-container .wp-support-button-main span {
    display: none; /* Hide the text */
}

.wp-support-button-container .wp-support-button-main:hover {
    background-color: #45a049; /* Darker green on hover */
    transform: scale(1.08); /* Slightly larger scale on hover */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4); /* Deeper shadow on hover */
}

.wp-support-button-social-links {
    position: absolute !important;
    bottom: 80px !important; /* Adjusted from 70px */
    right: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
}

.wp-support-button-social-links.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.wp-support-button-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.wp-support-button-link i, .wp-support-button-link img {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.wp-support-button-link.wpsb-call {
    background-color: #34B7F1; /* Light Blue */
}

.wp-support-button-link.wpsb-whatsapp {
    background-color: #25D366; /* WhatsApp Green */
}

.wp-support-button-link.wpsb-telegram {
    background-color: #0088CC; /* Telegram Blue */
}

.wp-support-button-link.wpsb-instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
}

.wp-support-button-link.wpsb-rubika {
    background-color: #2B579A; /* Rubika Blue */
}

.wp-support-button-link.wpsb-eitaa {
    background-color: #7B3E98; /* Eitaa Purple */
}

.wp-support-button-link.wpsb-bale {
    background-color: #2979FF; /* Bale Blue */
}

@media (max-width: 768px) {
    .wp-support-button-container {
        bottom: 55px!important;
        right: 15px;
    }

    .wp-support-button-container .wp-support-button-main {
        width: 60px;
        height: 60px;
        font-size: 14px; /* Adjust base font size for mobile */
    }

    .wp-support-button-container .wp-support-button-main i {
        font-size: 32px!important; /* Adjust icon size for mobile */
        margin: 0!important; /* Ensure no margins */
    }

    .wp-support-button-container .wp-support-button-main span {
        display: none; /* Hide the text on mobile */
    }

    .wp-support-button-social-links {
        bottom: 60px;
    }

    .wp-support-button-link {
        width: 45px;
        height: 45px;
    }

    .wp-support-button-link i, .wp-support-button-link img {
        font-size: 20px;
        width: 20px;
        height: 20px;
    }
} 
.wp-support-button-main i{
    margin-right: 0!important;
    font-size: 36px!important;
}