/* 导航权限控制样式 */

/* 导航禁用样式（灰色禁用模式） */
.sidebar-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background: #f5f5f5;
    color: #999;
}

.sidebar-item.disabled .sidebar-badge {
    background: #ccc;
    color: #888;
}

/* 悬停提示（禁用状态下） */
.sidebar-item.disabled {
    position: relative;
}

.sidebar-item.disabled:hover::after {
    content: 'VIP专属功能，升级后可用';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
    margin-left: 10px;
}
