/* ============================================================
   3-components / notification-badge.css
   未读计数红点徽章：用于侧栏菜单项、移动底部导航
   ============================================================ */

.nav-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    margin-left: auto;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    background: #ef4444;
    border-radius: 9px;
}

/* ===== 上下文变体 ===== */
.sidebar-item .nav-badge {
    margin-left: 6px;
}

.mobile-nav-item .nav-badge {
    position: absolute;
    top: 2px;
    right: 50%;
    margin-right: -16px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    font-size: 10px;
}
/* .mobile-nav-item { position: relative; } 已在 2-layout/mobile-nav.css 中声明 */
