.sensitive-blur {
    display: inline-block;
    background: linear-gradient(90deg, #e0e0e0 0%, #f5f5f5 50%, #e0e0e0 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    border-radius: 3px;
    padding: 0 4px;
    color: transparent;
    user-select: none;
    cursor: help;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}
