/* Priority Auto Chatbot - Wrapper Styles */
/* This file controls the WordPress container and iframe */

#priority-auto-chatbot-container {
    /* Container is controlled by JavaScript - minimal CSS */
    position: fixed;
    bottom: 20px;
    right: 20px;
    margin: 0;
    padding: 0;
    z-index: 9999;
    box-sizing: border-box;
    box-shadow: none;
    overflow: hidden;
}

#priority-auto-chatbot-iframe {
    /* Let JavaScript control all dimensions */
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    margin: 0;
    padding: 0;
    display: block;
    box-sizing: border-box;
    box-shadow: none;
    background: transparent;
}

/* DO NOT add media queries here - JavaScript handles responsive sizing */