/* plugin chatbot css */
#agentpanel-chatbot-root {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
    font-family: inherit;
}

.agentpanel-chat-window {
    width: 350px;
    height: 500px;
    max-height: calc(100vh - 100px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    display: none; /* hidden by default */
    flex-direction: column;
    position: fixed !important;
    bottom: 80px !important;
    right: 20px !important;
    z-index: 999999;
    border-radius: 0.75rem;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
}

.agentpanel-chat-window.open {
    display: flex;
}

/* Chat bubble styling */
.agentpanel-message.user {
    background-color: #4f46e5; /* primary-600 */
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 0;
}

.agentpanel-message.bot {
    background-color: #f3f4f6; /* gray-100 */
    color: #111827; /* gray-900 */
    align-self: flex-start;
    border-bottom-left-radius: 0;
}
