.context-custom-menu {
  display: none;
  position: absolute;
  z-index: 10000;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin: 0;
  list-style: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 180px;
}

.context-custom-menu li {
  margin: 0;
}

.context-custom-menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  border-radius: 4px;
  transition: background-color 0.15s ease;
}

.context-custom-menu li a:hover {
  background-color: #f5f5f5;
}

.context-custom-menu li a i {
  margin: 0;
  font-size: 14px;
  width: 16px;
  text-align: center;
}
