.contextMenu {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 4px 0;
  min-width: 120px;
  z-index: 1000;
}

.contextMenuItem {
  width: 100%;
  padding: 8px 16px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  color: #2d3748;
  transition: background-color 0.15s ease;
}

.contextMenuItem:hover {
  background-color: #f7fafc;
}

.contextMenuItemDanger {
  color: #e53e3e;
}

.contextMenuItemDanger:hover {
  background-color: #fff5f5;
}

