/**
 * Global Styles for Bottom Chat Bar Plugin
 * These styles apply to the entire page and are outside Shadow DOM
 */

/* Prevent any default styling conflicts */
bottom-chat-bar {
    all: initial;
    display: contents;
    z-index: 999999;
}

/* Ensure smooth animations across browser */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Accessibility: visible focus states */
*:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}
