#lvc-wrapper {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-family: inherit;
    font-size: 14px;
    color: #222222;
    background: #ffffff;
    padding: 8px 12px;
    border-radius: 4px;
}

#lvc-icon {
    width: 10px;
    height: 10px;
    margin-right: 8px;
    border-radius: 50%;
    background-color: #FFD700; 
    box-shadow: 0 0 2px #FFD700, 0 0 2px #FFD700;
    animation: lvc-pulse 2s infinite;
}

#lvc-count {
    margin-left: 5px;
}

@keyframes lvc-pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}
