/* Basic Chatbot Styling */
#gm-chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 330px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    z-index: 10000;
    font-family: Arial, sans-serif;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#gm-chatbot-widget.gm-chatbot-closed { height: auto; }
#gm-chatbot-widget.gm-chatbot-closed #gm-chatbot-messages-container,
#gm-chatbot-widget.gm-chatbot-closed #gm-chatbot-input-container,
#gm-chatbot-widget.gm-chatbot-closed #gm-chatbot-callback-form,
#gm-chatbot-widget.gm-chatbot-closed #gm-chatbot-actions-container,
#gm-chatbot-widget.gm-chatbot-closed #gm-chatbot-transcript-area { display: none; }

#gm-chatbot-header {
    background-color: #e30613;
    color: white;
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

#gm-chatbot-toggle { font-size: 1.3em; font-weight: bold; }

#gm-chatbot-messages-container {
    height: 300px;
    overflow-y: auto;
    padding: 15px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    flex-grow: 1;
}

#gm-chatbot-messages {
    list-style-type: none; padding: 0; margin: 0; display: flex; flex-direction: column;
}

.gm-chatbot-message {
    margin-bottom: 10px;
    padding: 10px 14px;
    border-radius: 18px;
    max-width: 85%;
    word-wrap: break-word;
    line-height: 1.4;
}
.gm-chatbot-message.user {
    background-color: #dcf8c6;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}
.gm-chatbot-message.bot {
    background-color: #e9e9eb;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}
.gm-chatbot-message p, .gm-chatbot-message ul, .gm-chatbot-message ol { margin: 0 0 5px 0; }
.gm-chatbot-message ul, .gm-chatbot-message ol { padding-left: 20px; }

#gm-chatbot-input-container {
    display: flex; padding: 10px; border-top: 1px solid #eee; background-color: #f9f9f9;
}
#gm-chatbot-input {
    flex-grow: 1; padding: 10px; border: 1px solid #ddd; border-radius: 20px; margin-right: 8px; font-size: 0.95em;
}
#gm-chatbot-send {
    padding: 10px 18px; background-color: #e30613; color: white; border: none; border-radius: 20px; cursor: pointer; font-weight: bold;
}
#gm-chatbot-send:hover { background-color: #c00511; }

#gm-chatbot-callback-form { padding: 15px; background-color: #f0f0f0; border-top: 1px solid #ddd; }
#gm-chatbot-callback-form p { margin-top: 0; margin-bottom: 10px; font-size: 0.9em; }
#gm-chatbot-callback-form input[type="text"],
#gm-chatbot-callback-form input[type="tel"],
#gm-chatbot-callback-form input[type="email"] {
    display: block; width: calc(100% - 22px); padding: 10px; margin-bottom: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 0.9em;
}
.gm-chatbot-gdpr-consent, .gm-chatbot-transcript-consent { display: flex; align-items: center; margin-bottom: 15px; }
.gm-chatbot-gdpr-consent input, .gm-chatbot-transcript-consent input { margin-right: 8px; vertical-align: middle; }
.gm-chatbot-gdpr-consent label, .gm-chatbot-transcript-consent label { font-size: 0.8em; color: #555; line-height:1.3; cursor: pointer; }
.gm-chatbot-gdpr-consent label a { color: #e30613; text-decoration: underline; }
#gm-chatbot-callback-submit {
    padding: 10px 15px; background-color: #28a745; color: white; border: none; border-radius: 4px; cursor: pointer; width: 100%; font-weight: bold; font-size: 0.95em;
}
#gm-chatbot-callback-submit:hover { background-color: #218838; }

/* Enhanced Typing Indicator */
.gm-chatbot-message.bot#gm-chatbot-typing-indicator-container {
    display: flex; flex-direction: column; align-items: flex-start; padding: 10px 14px;
}
.gm-chatbot-typing-indicator-text {
    font-size: 0.85em; color: #666; margin-bottom: 4px; font-style: italic;
}
.gm-chatbot-typing-indicator span {
    display: inline-block; width: 8px; height: 8px; border-radius: 50%; background-color: #8c8c8c; margin: 0 1px; animation: gm-chatbot-blink 1.4s infinite both;
}
.gm-chatbot-typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.gm-chatbot-typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes gm-chatbot-blink { 0% { opacity: 0.2; } 20% { opacity: 1; } 100% { opacity: 0.2; } }