.frozen-div {
  position: relative;
}
.frozen-div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: not-allowed;  
  pointer-events: auto; 
  background-color: rgba(0, 0, 0, 0.1); 
}

.newviewitem {
  margin:10px;
  cursor: pointer;  

  text-decoration: none;
  border: 1px solid transparent;
  transition: border-color 0.3s ease;  
}

.newviewitem:hover {
  border-color: lightgrey;
}


table.graphset td {
  padding-left: 20px;
}