.generateperf-sticky-commentbox {
    position: fixed;
    left: 30px;
    bottom: 30px;
    z-index: 9999;
    background-color: var(--lightest);
    padding: 0.5em 1em;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .08);
    font-weight: 500;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: .66em;
    color: var(--darkest);
    transition: opacity 0.5s ease;
    opacity: 1;
}

.generateperf-sticky-commentbox.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.live-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #32CD32;
    position: relative;
    box-shadow: 0 0 2px 1px rgba(50,205,50,.5)
}

.live-indicator:before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background-color: rgba(50,205,50,.3);
    animation: pulse-primary 2s infinite ease-out
}

.live-indicator:after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background-color: rgba(50,205,50,.5);
    animation: pulse-secondary 2s infinite ease-out;
    animation-delay: 0.5s
}

@keyframes pulse-primary {
    0% {
        transform: scale(.9);
        opacity: .9
    }

    50% {
        transform: scale(1.5);
        opacity: .3
    }

    100% {
        transform: scale(.9);
        opacity: 0
    }
}

@keyframes pulse-secondary {
    0% {
        transform: scale(.9);
        opacity: .7
    }

    70% {
        transform: scale(1.2);
        opacity: .2
    }

    100% {
        transform: scale(.9);
        opacity: 0
    }
}
