/* Context menu styles */
.context-menu {
  position: fixed;
  z-index: 1000;
  min-width: 140px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  padding: 4px 0;
  overflow: hidden;
}

.context-menu-item {
  display: block;
  width: 100%;
  padding: 8px 16px;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease;
}

.context-menu-item:hover:not(:disabled) {
  background: var(--accent);
  color: var(--bg);
}

.context-menu-item:disabled {
  color: var(--muted);
  cursor: not-allowed;
  opacity: 0.5;
}

.context-menu-divider {
  height: 1px;
  background: var(--line);
  margin: 4px 0;
}
