.blinking-dot-wrapper-a2f63613 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blinking-dot-a2f63613 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ff0000;
    animation: blink-animation-a2f63613 1.5s infinite ease-in-out;
}

.blinking-text-a2f63613 {
    font-weight: 600;
}

@keyframes blink-animation-a2f63613 {
    0% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
}
