/* Chatboz LearnPress Chat Styles */

/*
 * CSS Isolation - Prevents WordPress themes from overriding chatbox styles
 * Uses 'all: revert' to reset inherited styles to browser defaults
 */
#chatboz-lp-chat-container,
#chatboz-lp-chat-container *,
#chatboz-settings-modal,
#chatboz-settings-modal *,
#chatboz-member-menu,
#chatboz-emoji-picker,
#chatboz-reply-preview,
#chatboz-mentions-dropdown {
    all: revert;
    box-sizing: border-box;
}

/* Re-apply Tailwind normalizations after revert */
#chatboz-lp-chat-container,
#chatboz-settings-modal {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

#chatboz-lp-chat-container *,
#chatboz-settings-modal * {
    border-width: 0;
    border-style: solid;
    border-color: currentColor;
}

#chatboz-lp-chat-container button,
#chatboz-settings-modal button,
#chatboz-lp-chat-container input,
#chatboz-settings-modal input {
    font-family: inherit;
    font-size: 100%;
    line-height: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}

#chatboz-lp-chat-container button,
#chatboz-settings-modal button {
    cursor: pointer;
    background-color: transparent;
}

#chatboz-lp-chat-container img,
#chatboz-settings-modal img {
    display: block;
    max-width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #chatboz-lp-chat-container {
        flex-direction: column;
    }
}