/* Dashboard AI BotKit banner */
.mmrm-ai-botkit-banner {
    padding: 0;
    /* Rich, smoother gradient with subtle highlight overlay */
    background: radial-gradient(120% 180% at 15% 0%, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.00) 60%),
                linear-gradient(135deg, #0e5a48 0%, #0a7f62 55%, #14a37a 100%);
    border-left-color: #008858; /* primary */
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}
/* custom close button */
.mmrm-ai-botkit-banner .mmrm-ai-banner-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    border: 0;
    width: 28px;
    height: 28px;
    line-height: 26px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    text-align: center;
}
.mmrm-ai-botkit-banner .mmrm-ai-banner-close:hover {
    background: rgba(255,255,255,0.25);
}
.mmrm-ai-botkit-banner .mmrm-ai-banner-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}
.mmrm-ai-botkit-banner .mmrm-ai-banner-left {
    display: flex;
    gap: 16px;
    flex: 1 1 auto;
}
.mmrm-ai-botkit-banner .mmrm-ai-banner-logo {
    background: rgba(255,255,255,0.95);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}
.mmrm-ai-botkit-banner .mmrm-ai-banner-logo img {
    width: 96px;
    height: 40px;
    object-fit: contain;
    display: block;
}
.mmrm-ai-banner-text{
    padding: 26px 0 28px 0; /* extra breathing room */
}
.mmrm-ai-botkit-banner .mmrm-ai-banner-text h2 {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.3;
    color: #ffffff;
    font-weight: 600;
}
.mmrm-ai-botkit-banner .mmrm-ai-banner-text h2 strong {
    color: #b9f5e9;
    font-weight: 700;
}
.mmrm-ai-botkit-banner .mmrm-ai-banner-text p {
    margin: 0 0 8px;
    font-size: 14px;
    color: #e6fff6;
}
.mmrm-ai-botkit-banner .mmrm-ai-banner-text p strong {
    font-weight: 700; /* emphasize brand in paragraph */
}
.mmrm-ai-botkit-banner .mmrm-ai-banner-right {
    display: flex;
    align-items: flex-end; /* anchor to bottom */
}
.mmrm-ai-botkit-banner .mmrm-ai-banner-right img {
    max-height: 150px;
    width: auto;
    display: block;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.15));
}

/* Trust badge text */
.mmrm-ai-banner-trust {
    margin-top: 6px;
    color: #d7fff2;
}

.mmrm-ai-banner-trust a {
    color: #d7fff2;
    text-decoration: none;
}
/* CTA button in banner */
.mmrm-ai-banner-cta.button-primary {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #008858;
    padding: 10px 18px;
    height: auto;
    font-weight: 600;
    line-height: 1.4;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.mmrm-ai-banner-cta.button-primary:hover,
.mmrm-ai-banner-cta.button-primary:focus {
    background-color: #f6fffb;
    border-color: #f6fffb;
    color: #00724a;
}
/* Position the dismiss cross nicely */
.mmrm-ai-botkit-banner .notice-dismiss {
    top: 10px;
    right: 10px;
}

@media (max-width: 960px) {
    .mmrm-ai-botkit-banner .mmrm-ai-banner-inner {
        flex-direction: column;
        gap: 12px;
    }
    .mmrm-ai-botkit-banner .mmrm-ai-banner-right img {
        max-height: 150px;
    }
    .mmrm-ai-banner-left{
        flex-direction: column;
    }
    .mmrm-ai-banner-text{
        padding: 0 24px;
    }
    .mmrm-ai-botkit-banner .mmrm-ai-banner-right{
        justify-content: center;
    }
}

