/* Custom Context Menu Styles */
#custom-context-menu {
  display: none;
  position: fixed;
  z-index: 10000;
  background: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  padding: 4px 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
}

#custom-context-menu .menu-item {
  padding: 8px 16px;
  cursor: pointer;
  color: #333;
  transition: background-color 0.1s;
}

#custom-context-menu .menu-item:hover {
  background-color: #f0f0f0;
}

#custom-context-menu .separator {
  height: 1px;
  background-color: #e0e0e0;
  margin: 4px 0;
}

