/* Container geral do bloco de JSON */
.json-box {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  margin: 12px 0;
  background: #ffffff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

/* Cabeçalho do bloco */
.json-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  color: #111827;
  font-size: 14px;
}

/* Botão copiar */
.json-copy {
  padding: 6px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #ffffff;
  color: #111827;
  cursor: pointer;
  font-size: 13px;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.json-copy:hover {
  background: #f3f4f6;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

/* Área do JSON */
.json-pre {
  margin: 0;
  padding: 12px;
  max-height: 420px;
  overflow: auto;
  background: #0b1020;   /* fundo escuro estilo editor */
  color: #e5e7eb;        /* texto claro */
  font-size: 13px;
  line-height: 1.4;
}

/* Garante que quebre linhas corretamente */
.json-pre code {
  white-space: pre;
  display: block;
}