div[data-axi="notification_badge_container"] {
    position: relative;
}

span[data-axi="notification_badge"] {
    background: var(--red-color);
    color: white;
    height: 26px;
    aspect-ratio: 1;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: -8px;
    top: -8px;
    box-shadow: var(--box-shadow);
    z-index: 9999;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}