/* Project card nav layout */
.project-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Command snippet box */
.command-box {
  display: flex;
  align-items: center;
  background: var(--card-bg, #f4f4f4);
  padding: 6px 10px;
  border-radius: 6px;
  font-family: monospace;
  font-size: 0.9em;
  user-select: all;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Spacing between command text and button */
.command-box code {
  margin-right: 8px;
}

/* Copy button styling */
.copy-btn {
  background: #2563eb;
  border: none;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85em;
  transition: background 0.2s;
}

.copy-btn:hover {
  background: #1e4ec9;
}
