
/* CSS */
.button-13 {
  background-color: #fff;
  border: 1px solid #d5d9d9;
  border-radius: 8px;
  box-shadow: rgba(213, 217, 217, .5) 0 2px 5px 0;
  box-sizing: border-box;
  color: #0f1111;
  cursor: pointer;
  display: inline-block;
  font-family: "Amazon Ember",sans-serif;
  font-size: 13px;
  line-height: 29px;
  padding: 0 10px 0 11px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  width: 100px;
}

.button-13:hover {
  background-color: #f7fafa;
}

.button-13:focus {
  border-color: #008296;
  box-shadow: rgba(213, 217, 217, .5) 0 2px 5px 0;
  outline: 0;
}

/* ------------------------------- */
.no-row-scrollbar {
  -ms-overflow-style: none; /* IE, Edge*/
  scrollbar-width: none; /* Firefox*/
}

.no-row-scrollbar::-webkit-scrollbar {
  display: none; /*Opera, Chrome, Safari*/
}


/* ------------------------------- */
.json-container {
  font-family: monospace !important;
  font-size: 14px !important;
  background: #f8f9fa;
  color: #333;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  overflow-x: auto;
  white-space: pre-wrap;
  /* -webkit-user-modify: read-write-plaintext-only; */
}

.json-container-editable {
  font-family: monospace !important;
  font-size: 14px !important;
  background: #f8f9fa;
  color: #333;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  overflow-x: auto;
  white-space: pre-wrap;
  -webkit-user-modify: read-write-plaintext-only;
}

/* Key styling */
.json-key {
    color: #007bff;
    font-weight: bold;
}

/* String values */
.json-string {
    color: #28a745;
}

/* Numbers */
.json-number {
    color: #d63384;
}

/* Boolean */
.json-boolean {
    color: #fd7e14;
}

/* Null */
.json-null {
    color: #6c757d;
}

/* ------------------------------- */

.menu-container {
  position: relative;
  display: inline-block;
  /* position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh; */
  z-index: 9999;
}

.menu {
  position: fixed;
  top: 4px;
  right: 0;
  /* left: 50%; */
  background: white;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 8px 0;
  /* display: none; */
  /* min-width: 120px; */
  z-index: 9999;
}

.menu-item {
  padding: 8px 16px;
  cursor: pointer;
  white-space: nowrap;
}

.menu-item:hover {
  background-color: #f0f0f0;
}

/* ------------------------------- */
.ibx-modal-container {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4); /* translucent cover */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.ibx-modal {
  background: white;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  padding: 16px;
  width: 350px;
}

/* ------------------------------- */