/**
 * WP Latest Videos Menu - Styles
 */

/* 菜单项样式 */
.wlvm-latest-videos-menu-item {
    position: relative;
}

/* 通知气泡样式 */
.wlvm-notification-bubble {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #FF904C;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    padding: 0 2px;
    font-weight: bold;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    animation: wlvm-pulse 2s infinite;
}

/* 脉冲动画 */
@keyframes wlvm-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* 响应式调整 */
@media (max-width: 768px) {
    .wlvm-notification-bubble {
        top: -5px;
        right: -5px;
        font-size: 10px;
        min-width: 16px;
        height: 16px;
        line-height: 16px;
    }
}
