/* app/javascript/devtools/json_formatter/styles.css */
* {
  box-sizing: border-box;
}
:root {
  --json-font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    monospace;
  --json-font-size: 13px;
  --json-line-height: 1.5;
}
body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    Arial,
    sans-serif;
  background: #0f172a;
  color: #e5e7eb;
}
.json-formatter-app {
  min-height: 420px;
}
.devtool {
  max-width: 1200px;
  margin: 24px auto;
  padding: 16px;
}
.panes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.toolbar {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.toolbar button {
  background: #1e293b;
  border: 1px solid #334155;
  color: #e5e7eb;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}
.toolbar button:hover {
  background: #334155;
}
.editor {
  border: 1px solid #1e293b;
  border-radius: 8px;
  background: #020617;
  display: flex;
  flex-direction: column;
  height: 420px;
}
.editor-title {
  padding: 8px 12px;
  font-size: 13px;
  color: #cbd5f5;
  border-bottom: 1px solid #1e293b;
}
.editor-body {
  flex: 1;
  display: flex;
  overflow: hidden;
  background: #020617;
}
.editor textarea {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  padding: 12px;
  margin: 0;
  font-family: var(--json-font-family);
  font-size: var(--json-font-size);
  line-height: var(--json-line-height);
  letter-spacing: normal;
  color: #e5e7eb;
  resize: none;
  overflow: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.json-pre {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  padding: 12px;
  margin: 0;
  font-family: var(--json-font-family);
  font-size: var(--json-font-size);
  line-height: var(--json-line-height);
  letter-spacing: normal;
  color: #e5e7eb;
  overflow-y: auto;
  overflow-x: hidden;
  white-space: pre-wrap;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.json-key {
  color: #7dd3fc;
}
.json-string {
  color: #86efac;
}
.json-number {
  color: #facc15;
}
.json-boolean {
  color: #fb7185;
}
.json-null {
  color: #a5b4fc;
}
.json-tree {
  padding: 12px;
  font-family: var(--json-font-family);
  font-size: var(--json-font-size);
  line-height: var(--json-line-height);
  overflow: auto;
}
.json-node {
  cursor: pointer;
  user-select: none;
}
.toggle {
  display: inline-block;
  width: 14px;
}
.json-meta {
  color: #94a3b8;
  margin-left: 6px;
  font-size: 12px;
}
.error {
  background: #7f1d1d;
  color: #fee2e2;
  border: 1px solid #b91c1c;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}
.hint {
  margin-bottom: 10px;
  padding: 8px 12px;
  font-size: 13px;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 6px;
  color: #cbd5f5;
}
.stats {
  margin-top: 6px;
  font-size: 12px;
  color: #94a3b8;
  text-align: right;
}
.trust-line {
  margin: 8px 0 12px;
  font-size: 12px;
  color: #94a3b8;
  background: #020617;
  border: 1px dashed #334155;
  padding: 8px 10px;
  border-radius: 6px;
}
.view-toggle button {
  margin-right: 6px;
}
.seo-content {
  max-width: 900px;
  margin: 40px auto;
  line-height: 1.6;
  font-size: 15px;
}
.seo-content h1,
.seo-content h2,
.seo-content h3 {
  margin-top: 28px;
}
.seo-content ul {
  padding-left: 20px;
}
.editor-content {
  flex: 1;
  overflow: auto;
}
/*# sourceMappingURL=/assets/application.css.map */
