/* Custom context menu styling */
.ctx-menu {
  position: absolute;
  display: none;
  z-index: 9999;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  padding: 6px;
  min-width: 220px;
}

.ctx-menu[aria-hidden="false"] {
  display: block;
}

.ctx-item {
  display: grid;
  grid-template-columns: 1.25rem 1fr auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  color: #1f2933;
  font-size: 0.95rem;
}

.ctx-item:focus {
  outline: none;
}

.ctx-item:hover,
.ctx-item:focus-visible {
  background: #f5f7fb;
}

.ctx-sep {
  height: 1px;
  background: #eeeeee;
  margin: 6px 0;
}

.kbd {
  font-family: "SFMono-Regular", "Menlo", "Monaco", "Consolas", "Liberation Mono", "Courier New", monospace;
  font-size: 0.75rem;
  color: #6c7a89;
}

.ctx-item span:first-of-type {
  white-space: nowrap;
}
