.textjson {
  font-family: "Courier New", monospace;
  font-size: 14px;
  line-height: 1.5;
  white-space: pre;       /* Giữ nguyên khoảng trắng xuống dòng */
  background-color: #1e1e1e;
  color: #dcdcdc;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #444;
  overflow: auto;
}

/* Key */
.textjson .key {
  color: #9cdcfe;
}

/* String value */
.textjson .string {
  color: #ce9178;
}

/* Number value */
.textjson .number {
  color: #b5cea8;
}

/* Boolean + null */
.textjson .boolean {
  color: #569cd6;
}
.textjson .null {
  color: #569cd6;
}

.textjson {
  font-family: "Courier New", monospace;
  font-size: 14px;
  line-height: 1.5;
  white-space: pre-wrap;   /* Giữ khoảng trắng + xuống hàng */
  word-wrap: break-word;   /* Xuống hàng nếu từ quá dài */
  overflow-wrap: break-word;
  background-color: #1e1e1e;
  color: #dcdcdc;
  padding: 10px;
  border: 1px solid #444;
  border-radius: 6px;
  resize: both;            /* Cho phép kéo rộng khung nhập */
}
