.has-blinking-dot .wp-block-navigation-item__label {
    display: inline-flex;
    align-items: center;
}

/* Add a pseudo-element for the red dot */
.has-blinking-dot .wp-block-navigation-item__label::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
    animation: blink 1.3s cubic-bezier(0.05, 0.86, 0.33, 1.05) infinite; /* blink 1.3s linear infinite; */
    margin-right: 10px;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}