#chatbot-box {
    position: fixed;
    bottom: 10px;
    right: 20px;
    width: 300px;
    height: 400px;
    border: 1px solid #ccc;
    background: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
}

#chatlog {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    font-size: 14px;
}

#chat-input {
    padding: 10px;
    border: none;
    border-top: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
}