#mg-chatbot-bubble {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #3DBDB5;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999999;
    transition: transform 0.15s ease;
}
#mg-chatbot-bubble:hover {
    transform: scale(1.06);
}
#mg-chatbot-bubble-icon {
    font-size: 26px;
}

#mg-chatbot-window {
    position: fixed;
    bottom: 96px;
    right: 24px;
    width: 320px;
    max-width: 90vw;
    height: 420px;
    max-height: 70vh;
    background: #F5EFE6;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 999999;
    font-family: 'Nunito Sans', Arial, sans-serif;
}
#mg-chatbot-window.mg-hidden {
    display: none;
}

#mg-chatbot-header {
    background: #3DBDB5;
    color: #fff;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}
#mg-chatbot-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
}

#mg-chatbot-messages {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mg-msg {
    padding: 8px 12px;
    border-radius: 12px;
    max-width: 85%;
    font-size: 14px;
    line-height: 1.4;
}
.mg-msg.mg-bot {
    background: #fff;
    border: 1px solid #E8A020;
    align-self: flex-start;
    color: #333;
}
.mg-msg.mg-user {
    background: #8B6914;
    color: #fff;
    align-self: flex-end;
}

#mg-chatbot-input-row {
    display: flex;
    border-top: 1px solid #ddd;
    padding: 8px;
    gap: 6px;
    background: #fff;
}
#mg-chatbot-input {
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 14px;
}
#mg-chatbot-send {
    background: #E8A020;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    cursor: pointer;
    font-weight: 700;
}
#mg-chatbot-send:hover {
    background: #d6900f;
}
