/* Add custom CSS styles below */ 
.whatsapp-button {
    position: fixed;
    z-index: 10;
    right: 20px;
    bottom: 60px; /* يمكنك تعديل هذه القيمة حسب الحاجة */
}

.whatsapp-button-inner {
    position: relative;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-button-icon {
    position: relative;
    z-index: 1;
    background-color: rgb(69, 185, 116);
    border-radius: 50%;
    padding: 0.8em;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgb(255, 255, 255);
    filter: drop-shadow(rgba(0, 0, 0, 0.2) 0px 2px 4px) drop-shadow(rgba(0, 0, 0, 0.12) 0px 1px 10px) drop-shadow(rgba(0, 0, 0, 0.14) 0px 4px 5px);
}

.whatsapp-button-animation {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgb(69, 185, 116);
    opacity: 0.3;
    animation: 1.5s cubic-bezier(0, 0, 0.2, 1) 0s infinite normal none running ping;
    z-index: -999;
    pointer-events: none;
}

.whatsapp-button-svg {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    flex-direction: row-reverse;
    z-index: 1;
}

#bcio-whatsapp-widget {
    transform: scale(1.05);
}