.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
    margin-right: -2px;
    padding: 0.125rem 0.4rem;
    font-size: 0.5625rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.03em;
    color: #34d399;
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.28);
    border-radius: 999px;
    z-index: 1;
    flex-shrink: 0;
    vertical-align: middle;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
    animation: menuBadgePulse 2.4s ease-in-out infinite;
}

.label {
    white-space: nowrap;
}

@keyframes menuBadgePulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.55;
        transform: scale(0.8);
    }
}

@media (prefers-reduced-motion: reduce) {
    .dot {
        animation: none;
    }
}
