#lucky-ai-chatbox {
    border: 2px solid #4CAF50;
    padding: 10px;
    width: 300px;
    height: 400px;
    overflow-y: auto;
    background: #f9f9f9;
    position: relative;
}

#lucky-ai-avatar {
    width: 50px;
    height: 50px;
    background: url('https://i.ibb.co/2yJd0xY/avatar.png') no-repeat center center;
    background-size: cover;
    position: absolute;
    top: 5px;
    right: 5px;
    border-radius: 50%;
}

.talking {
    transform: scale(1.1);
    transition: all 0.3s;
}

#lucky-ai-input {
    width: 70%;
    padding: 5px;
}

#lucky-ai-send,
#lucky-ai-voice {
    width: 25%;
    padding: 5px 10px;
    background: #4CAF50;
    color: white;
    border: none;
}

#lucky-ai-output p {
    margin: 5px 0;
}

@media(max-width:768px) {
    #lucky-ai-chatbox {
        width: 95%;
        height: 350px;
        padding: 8px;
    }

    #lucky-ai-input {
        width: 65%;
    }

    #lucky-ai-send,
    #lucky-ai-voice {
        width: 30%;
    }
}