/* 메뉴 배지 스타일 */
.badge-alert {
    display: inline-block;
    background: #dc3545;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 5px;
    animation: pulse-alert 2s infinite;
}

.badge-count {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 8px;
    min-width: 20px;
    text-align: center;
}

@keyframes pulse-alert {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* 서브메뉴 배지 스타일 */
.submenu .badge-alert {
    float: right;
}
