/* HubSpot Chat Widget Positioning - Bottom Left */

/* Position the HubSpot chat widget on the bottom-left */
#hubspot-messages-iframe-container {
    bottom: 20px !important;
    left: 20px !important;
    right: auto !important;
}

/* Position the chat launcher button on the bottom-left */
.hs-chat-button {
    bottom: 20px !important;
    left: 20px !important;
    right: auto !important;
}

/* For RTL languages, move to bottom-right */
[dir="rtl"] #hubspot-messages-iframe-container,
[dir="rtl"] .hs-chat-button {
    left: auto !important;
    right: 20px !important;
}

/* Mobile positioning */
@media (max-width: 768px) {
    #hubspot-messages-iframe-container,
    .hs-chat-button {
        bottom: 10px !important;
        left: 10px !important;
    }
    
    [dir="rtl"] #hubspot-messages-iframe-container,
    [dir="rtl"] .hs-chat-button {
        left: auto !important;
        right: 10px !important;
    }
}
