.lvc-live-viewers-container {
    display: inline-flex;
    align-items: center;
    background-color: #fff4f4;
    border: 1px solid #ffcccc;
    padding: 8px 12px;
    border-radius: 4px;
    margin: 15px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #d32f2f;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(211, 47, 47, 0.05);
}

.lvc-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #d32f2f;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7);
    animation: lvc-pulse 1.5s infinite;
}

.lvc-count {
    font-weight: 700;
    font-size: 15px;
    transition: opacity 0.2s ease-in-out;
}

@keyframes lvc-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7);
    }
    
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(211, 47, 47, 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0);
    }
}
