/*
 * Basic styles for the PMP Ninja chatbot widget. The container sits fixed
 * to the bottom right of the screen. The form appears inside a small
 * window when the user clicks the toggle button.
 */

#pmpninja-chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: Arial, sans-serif;
    max-width: 260px;
}

#pmpninja-chatbot-toggle {
    background-color: #e63946;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s ease;
}

#pmpninja-chatbot-toggle:hover {
    background-color: #d62839;
}

#pmpninja-chatbot-window {
    margin-top: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hidden {
    display: none;
}

.pmpninja-chatbot-field {
    margin-bottom: 12px;
}

.pmpninja-chatbot-field label {
    display: block;
    margin-bottom: 4px;
    font-weight: bold;
    font-size: 13px;
}

.pmpninja-chatbot-field input,
.pmpninja-chatbot-field textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

#pmpninja-chatbot-submit {
    background-color: #1d3557;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 14px;
}

#pmpninja-chatbot-submit:hover {
    background-color: #16324f;
}

.pmpninja-chatbot-response {
    margin-top: 12px;
    font-size: 13px;
    color: #1d3557;
}