/* RTL/LTR Direction Support for Popup Chat */

/* LTR (English) - Icons on the right side */
#button-contact-vr[dir="ltr"] {
    left: auto !important;
}

#button-contact-vr[dir="ltr"] .button-contact {
    margin-top: -5px;
    margin-left: 0;
    margin-right: 0;
}

#button-contact-vr[dir="ltr"] .phone-vr {
    left: 0;
    right: auto;
}

/* RTL (Arabic) - Icons on the left side */
#button-contact-vr[dir="rtl"] {
    left: 0 !important;
    right: auto !important;
}

#button-contact-vr[dir="rtl"] .button-contact {
    margin-top: -5px;
    margin-right: 0;
    margin-left: 0;
}

#button-contact-vr[dir="rtl"] .phone-vr {
    right: 0;
    left: auto;
}

/* Ensure proper stacking without overlap */
#button-contact-vr .button-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#button-contact-vr .phone-vr {
    position: relative;
    width: 90px;
    height: 90px;
}

/* Phone bar positioning */
#button-contact-vr[dir="ltr"] .phone-bar {
    left: auto;
}

#button-contact-vr[dir="rtl"] .phone-bar {
    left: 0;
    right: auto;
}
