/* nodes.css — Context menu styling (graph node styling is in Cytoscape stylesheet) */

/* ===== Context Menu ===== */
.context-menu {
  display: none;
  position: fixed;
  z-index: 1000;
  background: #ffffff;
  border: 1px solid #d0d0d8;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 4px 0;
  min-width: 140px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
}

.context-menu.visible {
  display: block;
}

.context-menu-item {
  padding: 6px 16px;
  cursor: pointer;
  color: #1a1a2e;
}

.context-menu-item:hover {
  background: #f0f0f5;
}
