#andplus-chatbot-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    max-height: 400px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: sans-serif;
}

#chatbot-header {
    background: #0073aa;
    color: #fff;
    padding: 8px 12px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chatbot-body {
    padding: 10px;
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
}

#chat-window {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 8px;
}

#chat-input {
    padding: 6px 8px;
    margin-bottom: 6px;
    border-radius: 4px;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
}

#chat-send {
    padding: 6px 8px;
    border-radius: 4px;
    background: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
}
