/* Context Menu Styles */

#context-menu,
#finder-context-menu,
#finder-file-context-menu,
#trash-item-context-menu {
  position: absolute;
  background: rgba(40, 40, 40, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 5px 0;
  width: 220px;
  display: none;
  z-index: 99999;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.ctx-item {
  padding: 6px 15px;
  font-size: 13px;
  cursor: default;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background 0.15s ease;
}

.ctx-item:hover {
  background: var(--accent);
  color: white;
}

.ctx-hr {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 4px 0;
}

