/* FAB BUTTON */
#agro-chatbot-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00be46, #00d95a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    z-index: 9999;
}

/* CHAT BOX */
#agro-chatbot-box {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 320px;
    height: 420px;
    background: #fff;
    border-radius: 12px;
    display: none;
    flex-direction: column;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* HEADER */
.agro-chatbot-header {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    padding: 12px;
    color: #fff;
}

/* BODY */
.agro-chatbot-body {
    flex: 1;
    padding: 14px;
    overflow-y: auto;
    background: #f9f9f9;
}

/* MESSAGE */
.bot-msg {
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.user-msg {
    background: var(--green);
    color: #fff;
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 10px;
    margin-left: auto;
}

/* INPUT */
.agro-chatbot-input {
    display: flex;
    border-top: 1px solid #e5e7eb;
}

.agro-chatbot-input input {
    flex: 1;
    border: none;
    padding: 10px;
}

.agro-chatbot-input button {
    background: var(--green);
    border: none;
    color: #fff;
    padding: 0 16px;
}