#wc-chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: block !important;
}

#wc-chatbot-header {
    background: #007bff;
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#wc-chatbot-header h3 {
    margin: 0;
    font-size: 16px;
}

#wc-chatbot-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

#wc-chatbot-body {
    padding: 10px;
    height: 200px;
    overflow-y: auto;
    border-bottom: 1px solid #ddd;
}

#wc-chatbot-footer {
    display: flex;
    padding: 10px;
}

#wc-chatbot-input {
    flex: 1;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#wc-chatbot-send {
    margin-left: 10px;
    padding: 5px 10px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.message {
    margin-bottom: 10px;
}

.message.user {
    text-align: right;
}

.message.bot {
    text-align: left;
}