.aura-top-coa {
    background: #FFFFFF;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 30px rgba(7,14,35,0.04);
    padding: 14px 14px 12px;
    font-family: -apple-system,BlinkMacSystemFont,"Inter",system-ui,sans-serif;
    margin-bottom: 6px;
}
.aura-top-coa__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}
.aura-top-coa__title-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.aura-top-coa__live-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #2FBF71;
    position: relative;
    flex-shrink: 0;
}
.aura-top-coa__live-dot::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    background: rgba(47,191,113,0.35);
    opacity: 0;
    transform: scale(0.7);
    animation: aura-coa-pulse 3s ease-in-out infinite;
}
@keyframes aura-coa-pulse {
    0% {
        opacity: 0.1;
        transform: scale(0.7);
    }
    100% {
        opacity: 0;
        transform: scale(1.3);
    }
}
.aura-top-coa__title-text {
    font-size: 15px;
    font-weight: 700;
}
.aura-top-coa__sub {
    font-size: 12px;
    color: rgba(0,0,0,0.65);
    margin-top: 2px;
}
.aura-top-coa__right {
    display: flex;
    align-items: center;
    gap: 8px;
}
.aura-top-coa__arrow {
    font-size: 18px;
    line-height: 1;
    transition: transform .22s ease;
    display: inline-block;
}
.aura-top-coa__body {
    transition: max-height .3s ease,opacity .3s ease,transform .3s ease,margin-top .3s ease;
}
.aura-top-coa__img-wrap {
    margin-top: 2px;
}

/* open state arrow rotate */
.webellio-lab-report.is-open .aura-top-coa__arrow{
  transform: rotate(180deg);
}
