#bizkey-chatbot-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999999;
    font-family: Arial, sans-serif;
}

/* Toggle button */
#bizkey-chatbot-toggle {
    background: #7ed321;
    color: #111;
    border: none;
    padding: 12px 18px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
}

/* Chat box */
#bizkey-chatbot-box {
    width: 350px;
    height: 480px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

#bizkey-chatbot-box.hidden {
    display: none;
}

/* Header */
.bizkey-chatbot-header {
    background: #111;
    color: #fff;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Messages */
#bizkey-chatbot-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    background: #f7f7f7;
}

/* Message bubbles */
.bot-msg,
.user-msg {
    max-width: 80%;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 10px;
    font-size: 14px;
}

.bot-msg {
    background: #e6f7d9;
}

.user-msg {
    background: #111;
    color: #fff;
    margin-left: auto;
}

/* Quick buttons */
.quick-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.quick-reply {
    background: #7ed321;
    border: none;
    padding: 6px 10px;
    border-radius: 18px;
    cursor: pointer;
    font-size: 12px;
}

/* Input area */
.bizkey-chatbot-input-wrap {
    display: flex;
    border-top: 1px solid #ddd;
}

#bizkey-chatbot-input {
    flex: 1;
    border: none;
    padding: 10px;
}

#bizkey-chatbot-send {
    background: #7ed321;
    border: none;
    padding: 0 15px;
    cursor: pointer;
}