#mnemba-chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    height: 400px;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    z-index: 1000; /* Ensure it's on top of other elements */
}

#mnemba-chatbot-header {
    background-color: #0073aa;
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
}

.chatbot-title {
    color: white;
    font-weight: bold;
    display: block;
    width: 100%;
    text-align: center;
}

#mnemba-chatbot-body {
    flex-grow: 1;
    padding: 10px;
    overflow-y: auto; /* For scrollable chat history */
    background-color: #ffffff;
}

#mnemba-chatbot-body p {
    margin: 0 0 10px 0;
    padding: 8px 12px;
    background-color: #f0f0f0;
    border-radius: 15px;
    display: inline-block;
    max-width: 80%;
}

#mnemba-chatbot-input-area {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ccc;
    background-color: #ffffff;
}

#mnemba-chatbot-input {
    flex-grow: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-right: 8px;
}

#mnemba-chatbot-send-button {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.2s;
}

#mnemba-chatbot-send-button:hover {
    background-color: #005a87;
} 