/* Summary Bot – button */
.nativemetrics-summarybot-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    background: #1a73e8;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.nativemetrics-summarybot-btn:hover {
    background: #1557b0;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}
.nativemetrics-summarybot-btn:focus-visible {
    outline: 3px solid rgba(59, 130, 246, 0.35);
    outline-offset: 3px;
}

@property --nm-launcher-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes nm-summarybot-launcher-spin {
    to { --nm-launcher-angle: 360deg; }
}

.nativemetrics-summarybot-btn-animated {
    --nm-launcher-primary: #40c8f0;
    --nm-launcher-secondary: #6040e0;
    --nm-launcher-text: #7ec8f0;
    --nm-launcher-badge-text: #7da4cf;
    --nm-launcher-dark-bg: #0d1f38;
    --nm-launcher-dark-border: #1a4068;
    --nm-launcher-dark-hover-bg: #112540;
    --nm-launcher-dark-hover-text: #a8d8f8;
    --nm-launcher-light-bg: #ffffff;
    --nm-launcher-light-border: #a0c0e0;
    --nm-launcher-light-text: #0a3a70;
    --nm-launcher-light-hover-bg: #f0f7ff;
    --nm-launcher-light-hover-text: #082e58;
    display: inline-block;
    width: 340px;
    max-width: calc(100vw - 28px);
    height: 50px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 27px;
    overflow: visible;
    isolation: isolate;
    box-shadow: none;
}
.nativemetrics-summarybot-btn-animated:hover {
    background: transparent;
    transform: none;
}
.nativemetrics-summarybot-btn-animated .nativemetrics-summarybot-btn-halo,
.nativemetrics-summarybot-btn-animated .nativemetrics-summarybot-btn-ring,
.nativemetrics-summarybot-btn-animated .nativemetrics-summarybot-btn-tracer {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.nativemetrics-summarybot-btn-halo {
    inset: -5px;
    border-radius: 30px;
    z-index: 0;
    animation: nm-summarybot-launcher-spin 2.2s linear infinite;
    filter: blur(9px);
    opacity: 0.75;
    background: conic-gradient(from var(--nm-launcher-angle),
        transparent 0deg, transparent 148deg,
        #000c20 162deg, #001e60 178deg,
        #004aaa 196deg, #007fd0 213deg,
        #00aaee 228deg, var(--nm-launcher-primary) 240deg,
        #a8f0ff 249deg, #ffffff 255deg,
        transparent 262deg, transparent 360deg
    );
}
.nativemetrics-summarybot-btn-halo-b {
    animation-delay: -1.1s;
}
.nativemetrics-summarybot-btn-ring {
    inset: -1px;
    border-radius: 27px;
    z-index: 1;
    animation: nm-summarybot-launcher-spin 2.2s linear infinite;
    background: conic-gradient(from var(--nm-launcher-angle),
        transparent 0deg, transparent 148deg,
        #000c20 162deg, #001e60 178deg,
        #004aaa 196deg, #007fd0 213deg,
        #00aaee 228deg, var(--nm-launcher-primary) 240deg,
        #a8f0ff 249deg, #ffffff 255deg,
        transparent 262deg, transparent 360deg
    );
}
.nativemetrics-summarybot-btn-ring-b {
    animation-delay: -1.1s;
}
.nativemetrics-summarybot-btn-tracer {
    display: none;
    z-index: 3;
    overflow: visible;
}
.nativemetrics-summarybot-btn-inner {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 340px;
    max-width: calc(100vw - 28px);
    height: 50px;
    padding: 0 24px;
    box-sizing: border-box;
    border-radius: 25px;
    overflow: hidden;
}
.nativemetrics-summarybot-btn-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 92px;
    height: 24px;
    padding: 0 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--nm-launcher-badge-text);
    background: transparent;
    border: none;
    border-radius: 999px;
    box-shadow: none;
    opacity: 0.88;
}
.nativemetrics-summarybot-btn-label {
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: 0.022em;
    white-space: nowrap;
    text-align: center;
    font-family: -apple-system, system-ui, sans-serif;
}
.nativemetrics-summarybot-btn-animated-dark {
    color: var(--nm-launcher-text, #7ec8f0);
}
.nativemetrics-summarybot-btn-animated-dark .nativemetrics-summarybot-btn-inner {
    background: var(--nm-launcher-dark-bg);
    color: var(--nm-launcher-text, #7ec8f0);
    border: 1.5px solid var(--nm-launcher-dark-border);
}
.nativemetrics-summarybot-btn-animated-dark .nativemetrics-summarybot-btn-halo {
    display: block;
}
.nativemetrics-summarybot-btn-animated-dark .nativemetrics-summarybot-btn-ring {
    display: block;
}
.nativemetrics-summarybot-btn-animated-dark:hover .nativemetrics-summarybot-btn-inner,
.nativemetrics-summarybot-btn-animated-dark:focus-visible .nativemetrics-summarybot-btn-inner {
    background: var(--nm-launcher-dark-hover-bg);
    color: var(--nm-launcher-dark-hover-text);
}
.nativemetrics-summarybot-btn-animated-light {
    color: var(--nm-launcher-light-text);
}
.nativemetrics-summarybot-btn-animated-light .nativemetrics-summarybot-btn-inner {
    background: var(--nm-launcher-light-bg);
    color: var(--nm-launcher-light-text);
    border: 1.5px solid var(--nm-launcher-light-border);
}
.nativemetrics-summarybot-btn-animated-light:hover .nativemetrics-summarybot-btn-inner,
.nativemetrics-summarybot-btn-animated-light:focus-visible .nativemetrics-summarybot-btn-inner {
    background: var(--nm-launcher-light-hover-bg);
    color: var(--nm-launcher-light-hover-text);
}
.nativemetrics-summarybot-btn-animated-light .nativemetrics-summarybot-btn-halo,
.nativemetrics-summarybot-btn-animated-light .nativemetrics-summarybot-btn-ring {
    display: none;
}
.nativemetrics-summarybot-btn-animated-light .nativemetrics-summarybot-btn-tracer {
    display: block;
}

/* Overlay */
.nativemetrics-summarybot-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}
.nativemetrics-summarybot-overlay-open {
    opacity: 1;
    visibility: visible;
}
.nativemetrics-summarybot-panel {
    position: relative;
    width: 100%;
    min-width: 380px;
    max-width: 820px;
    min-height: 480px;
    max-height: 90vh;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.nativemetrics-summarybot-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 36px;
    height: 36px;
    padding: 0;
    font-size: 28px;
    line-height: 1;
    color: #5f6368;
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}
.nativemetrics-summarybot-close:hover {
    background: #f1f3f4;
    color: #202124;
}
.nativemetrics-summarybot-iframe {
    width: 100%;
    min-width: 360px;
    height: 84vh;
    min-height: 460px;
    border: none;
    display: block;
    flex: 1;
}

/* Accordion – inline in page flow, light green style */
.nativemetrics-summarybot-accordion-wrap {
    position: relative;
    min-width: 360px;
    max-width: 720px;
    margin: 24px auto;
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 1;
}
.nativemetrics-summarybot-accordion-toggle {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 500;
    color: #1b5e20;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.nativemetrics-summarybot-accordion-toggle:hover {
    background: rgba(255, 255, 255, 0.5);
}
.nativemetrics-summarybot-accordion-toggle-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.nativemetrics-summarybot-accordion-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #2e7d32;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
}
.nativemetrics-summarybot-accordion-toggle-text {
    line-height: 1.3;
}
.nativemetrics-summarybot-accordion-label {
    font-weight: 600;
    margin-right: 8px;
    color: #1b5e20;
}
.nativemetrics-summarybot-accordion-ai-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #2e7d32;
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 8px;
    border-radius: 10px;
    vertical-align: middle;
}
.nativemetrics-summarybot-accordion-hint {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #388e3c;
    margin-top: 2px;
}
.nativemetrics-summarybot-accordion-expand {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 500;
    color: #1b5e20;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #c8e6c9;
}
.nativemetrics-summarybot-accordion-chevron {
    margin-left: 4px;
    font-size: 10px;
    vertical-align: middle;
}
.nativemetrics-summarybot-accordion-body {
    display: none;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    background: #f1f8e9;
    border-top: 1px solid #c8e6c9;
}
.nativemetrics-summarybot-accordion-open .nativemetrics-summarybot-accordion-body {
    display: block;
}
.nativemetrics-summarybot-accordion-wrap .nativemetrics-summarybot-iframe {
    width: 100%;
    min-width: 320px;
    height: 70vh;
    min-height: 400px;
    display: block;
}

/* Exhaust / delay-traffic prompt (opt-in: ?exhaust=1 on script) */
.nativemetrics-summarybot-exhaust-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}
.nativemetrics-summarybot-exhaust-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 24px 20px 20px;
    box-sizing: border-box;
}
.nativemetrics-summarybot-exhaust-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    padding: 0;
    font-size: 26px;
    line-height: 1;
    color: #64748b;
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}
.nativemetrics-summarybot-exhaust-close:hover {
    background: #f1f5f9;
    color: #0f172a;
}
.nativemetrics-summarybot-exhaust-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.nativemetrics-summarybot-exhaust-bolt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    font-size: 18px;
}
.nativemetrics-summarybot-exhaust-brand {
    font-size: 15px;
    font-weight: 600;
    color: #334155;
    font-family: system-ui, -apple-system, sans-serif;
}
.nativemetrics-summarybot-exhaust-title {
    margin: 0 0 16px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #38bdf8;
    text-align: center;
    font-family: system-ui, -apple-system, sans-serif;
}
.nativemetrics-summarybot-exhaust-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.nativemetrics-summarybot-exhaust-q {
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    font-size: 15px;
    line-height: 1.4;
    color: #0f172a;
    background: #fff;
    border: 2px solid #7dd3fc;
    border-radius: 12px;
    cursor: pointer;
    font-family: system-ui, -apple-system, sans-serif;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.nativemetrics-summarybot-exhaust-q:hover {
    background: #f0f9ff;
    border-color: #0ea5e9;
}
@media (prefers-reduced-motion: reduce) {
    .nativemetrics-summarybot-btn,
    .nativemetrics-summarybot-btn-animated {
        transition: none;
    }
    .nativemetrics-summarybot-btn-halo,
    .nativemetrics-summarybot-btn-ring {
        animation: none;
    }
    .nativemetrics-summarybot-exhaust-q {
        transition: none;
    }
}

/* Zipline 2026 refresh */
:root {
    --nm-zip-blue: #49aff6;
    --nm-zip-blue-strong: #3aa3f0;
    --nm-zip-blue-soft: #edf7ff;
    --nm-zip-ink: #535864;
    --nm-zip-muted: #939ca9;
    --nm-zip-border: #d9e9f8;
    --nm-zip-card: #fff;
    --nm-zip-shell: #f7f6f2;
    --nm-zip-shadow: 0 24px 64px rgba(83, 88, 100, 0.18);
}

.nativemetrics-summarybot-btn {
    bottom: 28px;
    right: 24px;
    padding: 11px 16px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #fff;
    background: var(--nm-zip-blue);
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(73, 175, 246, 0.26);
}

.nativemetrics-summarybot-btn:hover {
    background: var(--nm-zip-blue-strong);
    transform: translateY(-1px);
}

.nativemetrics-summarybot-overlay {
    background: rgba(83, 88, 100, 0.26);
    padding: 28px;
}

.nativemetrics-summarybot-panel {
    width: min(100%, 640px);
    min-width: 0;
    max-width: 640px;
    min-height: 400px;
    max-height: calc(100vh - 56px);
    background: var(--nm-zip-card);
    border: 1px solid rgba(73, 175, 246, 0.18);
    border-radius: 24px;
    box-shadow: var(--nm-zip-shadow);
}

.nativemetrics-summarybot-close {
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    font-size: 18px;
    line-height: 1;
    color: #8fa0b2;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #dbe8f3;
    box-shadow: 0 10px 24px rgba(83, 88, 100, 0.12);
}

.nativemetrics-summarybot-close:hover {
    background: #fff;
    color: var(--nm-zip-ink);
}

.nativemetrics-summarybot-iframe {
    min-width: 0;
    height: 400px;
    min-height: 400px;
    background: #fff;
}

.nativemetrics-summarybot-accordion-wrap {
    min-width: 0;
    max-width: 760px;
    margin: 24px auto;
    background: var(--nm-zip-card);
    border: 1px solid #e6edf4;
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(83, 88, 100, 0.12);
}

.nativemetrics-summarybot-accordion-toggle {
    padding: 12px 14px;
    color: var(--nm-zip-ink);
    background: linear-gradient(180deg, #fbfbfc 0%, #f2f5f8 100%);
}

.nativemetrics-summarybot-accordion-toggle:hover {
    background: linear-gradient(180deg, #fff 0%, #f5f8fb 100%);
}

.nativemetrics-summarybot-accordion-toggle-left {
    gap: 10px;
}

.nativemetrics-summarybot-accordion-icon {
    width: 30px;
    height: 30px;
    font-size: 15px;
    background: #fff7df;
    border: 1px solid #f4deb3;
    color: #f0b431;
}

.nativemetrics-summarybot-accordion-toggle-text {
    display: block;
    line-height: 1.15;
}

.nativemetrics-summarybot-accordion-label {
    margin-right: 0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--nm-zip-ink);
}

.nativemetrics-summarybot-accordion-ai-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: 2px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #8c95a2;
    background: #fff;
    border: 1px solid #dde7ef;
    padding: 3px 10px;
    border-radius: 999px;
}

.nativemetrics-summarybot-accordion-hint {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--nm-zip-muted);
    margin-top: 0;
}

.nativemetrics-summarybot-accordion-expand {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #8f99a7;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #dfe8f0;
}

.nativemetrics-summarybot-accordion-chevron {
    font-size: 9px;
}

.nativemetrics-summarybot-accordion-body {
    background: #fff;
    border-top: 1px solid #e9eff5;
}

.nativemetrics-summarybot-accordion-wrap .nativemetrics-summarybot-iframe {
    height: 400px;
    min-height: 400px;
}

.nativemetrics-summarybot-exhaust-overlay {
    background: rgba(83, 88, 100, 0.28);
}

.nativemetrics-summarybot-exhaust-card {
    width: min(100%, 620px);
    max-width: 620px;
    background: #fff;
    border: 1px solid rgba(73, 175, 246, 0.18);
    border-radius: 24px;
    box-shadow: var(--nm-zip-shadow);
    padding: 20px 20px 18px;
}

.nativemetrics-summarybot-exhaust-close {
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
    font-size: 18px;
    color: #8fa0b2;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #dbe8f3;
}

.nativemetrics-summarybot-exhaust-close:hover {
    background: #fff;
    color: var(--nm-zip-ink);
}

.nativemetrics-summarybot-exhaust-head {
    gap: 10px;
    margin-bottom: 4px;
}

.nativemetrics-summarybot-exhaust-bolt {
    width: 30px;
    height: 30px;
    background: linear-gradient(180deg, #69c3ff 0%, #4eaff6 100%);
    border: 1px solid #5bb7f9;
    color: #fff;
    font-size: 15px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 8px 18px rgba(81, 183, 251, 0.22);
}

.nativemetrics-summarybot-accordion-icon svg,
.nativemetrics-summarybot-exhaust-bolt svg {
    display: block;
    width: 0.95em;
    height: 0.95em;
}

.nativemetrics-summarybot-exhaust-brand {
    font-size: 15px;
    font-weight: 700;
    color: var(--nm-zip-ink);
}

.nativemetrics-summarybot-exhaust-title {
    margin: 0 0 16px;
    font-size: clamp(2rem, 5vw, 3.1rem);
    line-height: 0.95;
    font-weight: 800;
    color: var(--nm-zip-blue);
    letter-spacing: -0.04em;
}

.nativemetrics-summarybot-exhaust-list {
    gap: 10px;
}

.nativemetrics-summarybot-exhaust-q {
    padding: 13px 16px;
    font-size: 16px;
    line-height: 1.35;
    color: #646d79;
    border: 1.5px solid #9fd4ff;
    border-radius: 14px;
    box-shadow: none;
}

.nativemetrics-summarybot-exhaust-q:hover {
    background: #f6fbff;
    border-color: var(--nm-zip-blue);
}

.nativemetrics-summarybot-exhaust-input-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #edf2f7;
}

.nativemetrics-summarybot-exhaust-input {
    flex: 1;
    min-width: 0;
    height: 44px;
    padding: 0 16px;
    font-size: 15px;
    color: var(--nm-zip-ink);
    background: #fff;
    border: 1px solid #dbe7f2;
    border-radius: 14px;
    outline: none;
}

.nativemetrics-summarybot-exhaust-input::placeholder {
    color: #a1aab6;
}

.nativemetrics-summarybot-exhaust-input:focus {
    border-color: #95d2ff;
    box-shadow: 0 0 0 3px rgba(73, 175, 246, 0.12);
}

.nativemetrics-summarybot-exhaust-send {
    flex: 0 0 auto;
    min-width: 84px;
    height: 44px;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: var(--nm-zip-blue);
    border: none;
    border-radius: 12px;
    cursor: pointer;
}

.nativemetrics-summarybot-exhaust-send:hover {
    background: var(--nm-zip-blue-strong);
}

@media (max-width: 768px) {
    .nativemetrics-summarybot-overlay {
        padding: 16px;
    }

    .nativemetrics-summarybot-panel {
        max-height: calc(100vh - 32px);
        border-radius: 20px;
    }

    .nativemetrics-summarybot-iframe {
        height: min(72vh, 420px);
        min-height: 360px;
    }

    .nativemetrics-summarybot-accordion-wrap .nativemetrics-summarybot-iframe {
        height: 380px;
        min-height: 380px;
    }

    .nativemetrics-summarybot-exhaust-card {
        padding: 18px 16px 16px;
        border-radius: 20px;
    }

    .nativemetrics-summarybot-exhaust-input-row {
        gap: 8px;
    }

    .nativemetrics-summarybot-exhaust-send {
        min-width: 74px;
    }
}

@media (max-width: 640px) {
    .nativemetrics-summarybot-overlay {
        padding: 0;
    }
    .nativemetrics-summarybot-btn {
        right: 16px;
        bottom: 16px;
    }
    .nativemetrics-summarybot-btn-animated {
        width: min(340px, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        height: 50px;
    }
    .nativemetrics-summarybot-btn-animated .nativemetrics-summarybot-btn-inner {
        width: min(340px, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        padding: 0 20px;
    }
    .nativemetrics-summarybot-btn-animated .nativemetrics-summarybot-btn-label {
        font-size: 14px;
    }
    .nativemetrics-summarybot-btn-animated .nativemetrics-summarybot-btn-badge {
        top: -28px;
        min-width: 72px;
        font-size: 9px;
    }
    .nativemetrics-summarybot-panel {
        width: 100vw;
        max-width: 100vw;
        min-height: 100vh;
        max-height: 100vh;
        min-width: 0;
        border-radius: 0;
    }
    .nativemetrics-summarybot-iframe {
        height: 100vh;
        min-height: 100vh;
        min-width: 0;
    }
    .nativemetrics-summarybot-close {
        top: max(12px, env(safe-area-inset-top, 0px));
        right: max(12px, env(safe-area-inset-right, 0px));
    }
}
