div.ControlsRow, div.HeadersRow {
  font-family: Georgia;
}

.Canvas {
  font-family: Lucida Console, Georgia;
  font-size: 13px;
  background-color: #ECECEC;
  color: #000000;
  border: solid 1px #CECECE;
}

.ObjectBrace {
  color: #00AA00;
  font-weight: bold;
}

.ArrayBrace {
  color: #0033FF;
  font-weight: bold;
}

.PropertyName {
  color: #CC0000;
  font-weight: bold;

}

.String {
  color: #007777;
}

.Number {
  color: #AA00AA;
}

.Boolean {
  color: #0000FF;
}

.Function {
  color: #AA6633;
  text-decoration: italic;
}

.Null {
  color: #0000FF;
}

.Comma {
  color: #000000;
  font-weight: bold;
}

PRE.CodeContainer {
  margin-top: 0px;
  margin-bottom: 0px;
}

PRE.CodeContainer img {
  cursor: pointer;
  border: none;
  margin-bottom: -1px;
}

#CollapsibleViewDetail a {
  padding-left: 10px;
}

#ControlsRow {
  white-space: nowrap;
  font: 11px Georgia;
}

#TabSizeHolder {
  padding-left: 10px;
  padding-right: 10px;
}

#HeaderTitle {
  text-align: right;
  font-size: 11px;
}

#HeaderSubTitle {
  margin-bottom: 2px;
  margin-top: 0px
}

#RawJson {
  width: 99%;
  height: 120px;

}

A.OtherToolsLink {
  color: #555;
  text-decoration: none;
}

A.OtherToolsLink:hover {
  text-decoration: underline;
}

/* 整体页面样式 */
body {
  margin: 0;
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: #f5f5f5;
}

/* 顶部按钮组样式 */
.button-group {
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
}

button {
  padding: 8px 16px;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  background-color: #4a90e2;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s;
}

button:hover {
  background-color: #357abd;
}

/* 主容器样式 */
fieldset {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

legend.title {
  padding: 0 10px;
  color: #333;
}

/* 文本框样式 */
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', monospace;
  font-size: 14px;
  resize: vertical;
  margin-bottom: 10px;
}

textarea:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

/* 控制区域样式 */
#ControlsRow {
  padding: 10px 0;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

#ControlsRow input[type="button"] {
  padding: 6px 12px;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  background-color: #4a90e2;
  color: white;
  cursor: pointer;
  margin-right: 10px;
}

#ControlsRow select {
  padding: 6px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin: 0 5px;
}

#CollapsibleViewDetail a {
  color: #4a90e2;
  text-decoration: none;
  margin: 0 5px;
  padding: 4px 8px;
  border-radius: 3px;
}

#CollapsibleViewDetail a:hover {
  background-color: #f0f7ff;
}

/* 备案信息样式 */
.beian-info {
  text-align: center;
  padding: 20px 0;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  border-top: 1px solid #eee;
  font-size: 12px;
}

.beian-info a {
  color: #666;
  text-decoration: none;
}

.beian-info a:hover {
  color: #4a90e2;
}

