/* Code block styling */
pre {
  background: #1e1e1e;             /* dark background */
  color: #dcdcdc;                  /* default text color */
  padding: 1rem 1.25rem;
  border-radius: 8px;
  overflow-x: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  line-height: 1.4;
  border: 1px solid #2a2a2a;
  position: relative;
  margin: 1rem 0;
  white-space: pre-wrap;    /* allow wrapping */
  word-break: break-word;   /* break long strings if needed */
}

pre code {
  white-space: pre-wrap;
  display: block;
}

/* Copy button */
pre.hm-copy-ready { padding-top: 2.0em; }

.hm-copy-btn {
  position: absolute; top: 6px; right: 6px;
  padding: 2px 8px; font-size: 12px; line-height: 1.6;
  border: 1px solid #ccc; border-radius: 4px; background: #fff; cursor: pointer;
  box-shadow: 0 1px 2px rgba(0,0,0,.15);
}
.hm-copy-btn:hover { background: #f3f3f3; }
.hm-copy-btn:active { transform: scale(0.98); }
