/* Admin Table Styling */
#ref2wa-table input[type="text"] {
    width: 100%;
}

/* WhatsApp Bubble */
.ref2wa-bubble {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: transform 0.2s ease;
}

.ref2wa-bubble.rtl {
    right: auto;
    left: 20px;
}

.ref2wa-bubble:hover {
    transform: scale(1.1);
}

.ref2wa-bubble img {
    width: 32px;
    height: 32px;
    max-width: 100%;
}

@media (max-width: 600px) {
    .ref2wa-bubble {
        width: 50px;
        height: 50px;
    }

    .ref2wa-bubble img {
        width: 28px;
        height: 28px;
    }
}