.context-menu {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  min-width: 150px;
  max-width: 200px;
}

.context-menu li {
  padding: 8px 12px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.context-menu li:hover {
  background-color: #f2f2f2;
}

.context-menu li:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}