/* Code block + copy button */
.code-block {
  background: #ffffff !important;  /* White background */
  color: #000000 !important;       /* Black text */
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: .95rem;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 1rem 1.2rem;
  position: relative;
}

/* Ensure commands (inside <code>) look like terminal text */
.code-block code {
  white-space: pre;
  display: block;
  color: #000000;  /* black command text */
}

/* Copy button aligned top-right */
.code-block .copy {
  position: absolute;
  top: .6rem;
  right: .6rem;
  background: #f8f9fa;
  border: 1px solid #ccc;
  color: #000;
  padding: .35rem .6rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background .15s ease;
}
.code-block .copy:hover {
  background: #e9ecef;
}
.code-block .copy.copied {
  background-color: #198754 !important; /* success green */
  color: #fff !important;
}