#wp-ai-chatbot-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0073aa;
    color: white;
    font-size: 24px;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
}

#wp-ai-chatbot-container {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    z-index: 9999;
    font-family: Arial, sans-serif;
}

#wp-ai-chatbot-header {
    background: #0073aa;
    color: white;
    padding: 10px;
    font-weight: bold;
}

#wp-ai-chatbot-messages {
    padding: 10px;
    height: 200px;
    overflow-y: auto;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

#wp-ai-chatbot-input {
    width: calc(100% - 80px);
    padding: 5px;
    border: none;
    border-top: 1px solid #ccc;
    box-sizing: border-box;
}

#wp-ai-chatbot-send {
    width: 60px;
    border: none;
    background: #0073aa;
    color: white;
    cursor: pointer;
    padding: 6px;
}

.wp-ai-chatbot-user-msg {
    background: #dcf8c6;
    padding: 5px;
    margin: 5px 0;
    border-radius: 5px;
}

.wp-ai-chatbot-reply-msg {
    background: #f1f0f0;
    padding: 5px;
    margin: 5px 0;
    border-radius: 5px;
}

.wp-ai-chatbot-loading {
    font-style: italic;
    color: #999;
    margin: 5px 0;
}
