#ai-chat-box {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: Arial;
    z-index: 99999;
}

#ai-chat-header {
    background: #4f46e5;
    color: #fff;
    padding: 10px;
    border-radius: 10px 10px 0 0;
}

#ai-chat-messages {
    height: 200px;
    padding: 10px;
    overflow-y: auto;
}

#ai-chat-input {
    width: 70%;
    padding: 8px;
}

#ai-chat-send {
    width: 25%;
    background: #4f46e5;
    color: #fff;
    border: none;
}
