.context-menu {
  position: absolute; /* Allows positioning based on mouse coordinates */
  background-color: #333; /* Background color of the menu */
  border: 1px solid #222; /* Border around the menu */
  border-radius: .4rem; /* Rounded corners */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  z-index: 10000; /* Ensures the menu appears above other elements */
  padding: 10px; /* Vertical padding for menu items */
  display: block; /* Initially hidden */
  color: white;
  font-family: 'JetBrains Mono', monospace;
}

.context-menu ul {
  list-style: none; /* Remove default list styles */
  margin: 0; /* Remove margin */
  padding: 0; /* Remove padding */
}

.context-menu li {
  padding: .1rem .05rem;
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.2s; /* Smooth background color transition */
}

.context-menu li:hover {
  background-color: #444; /* Light gray background on hover */
}
