@font-face {
  font-family: "Segoe UI";
  font-weight: 200;
  src: local("Segoe UI Light");
}
@font-face {
  font-family: "Segoe UI";
  font-weight: 300;
  src: local("Segoe UI Semilight");
}
@font-face {
  font-family: "Segoe UI";
  font-weight: 400;
  src: local("Segoe UI");
}
@font-face {
  font-family: "Segoe UI";
  font-weight: 600;
  src: local("Segoe UI Semibold");
}
@font-face {
  font-family: "Segoe UI";
  font-weight: 700;
  src: local("Segoe UI Bold");
}
@font-face {
  font-family: "Segoe UI";
  font-style: italic;
  font-weight: 400;
  src: local("Segoe UI Italic");
}
@font-face {
  font-family: "Segoe UI";
  font-style: italic;
  font-weight: 700;
  src: local("Segoe UI Bold Italic");
}

/* * {
  margin: 0;
}

body {
  font-family: "Segoe UI";
  font-size: 11px;
  background-color: #f0f0f0;
} */

/* input, button {
  font-family: "Segoe UI";
  font-size: 11px;
  padding: 4px;
} */

/* #container {
  display: flex;
  height: 100%;
  flex-direction: column;
} */

/* #main {
  overflow: hidden;
  display: flex;
  height: 100%;
} */

#viewer {
  display: flex;
  flex-direction: column;
  font-family: "Segoe UI";
  font-size: 11px;
  background-color: #f6f6f6;
  margin: 10px;
  margin-left: 0;
  margin-top: 31px;
  margin-right: 0;
  border: 1px solid #646464;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}

#content {
  overflow: auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  user-select: none;
}

#mid-section {
  display: flex;
}

#content-back {
  background-color: #f6f6f6;
  width: fit-content;
}

.table-row {
  display: flex;
  box-sizing: border-box;
}

.table-row>div {
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  min-width: 20px;
  padding: 0 4px 0 6px;
  border: 1px solid #ccc;
  border-width: 0 1px 1px 0;
  box-sizing: border-box;
}

.table-row>div.selected {
  background-color: #7fb4e5;
  color: #fff;
}

.table-row-header {
  display: flex;
  box-sizing: border-box;
  user-select: none;
}

.table-row-header>div {
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  padding: 0 4px 0 4px;
  border: 1px solid #0000;
  box-sizing: border-box;
  justify-content: center;
}

.table-col-header {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  flex-shrink: 0;
  user-select: none;
  overflow: hidden;
}

.table-col-header>div {
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  padding: 0 4px 0 6px;
  border: 1px solid #0000;
  box-sizing: border-box;
}

#row-headers {
  display: flex;
  flex-direction: column;
  height: 200%;
  min-width: 40px;
  background-color: #ddd;
  flex-shrink: 0;
  align-items: center;
}

#index>ul {
  padding-inline-start: 0;
}

ul {
  list-style-type: none;
  user-select: none;
}

li {
  margin: 2px 0 2px 0;
}

li>p {
  padding: 3px 6px 3px 6px;
}

li.selected-node>p {
  background-color:#7fb4e5;
  color: #fff;
  font-weight: bold;
}

.tableSetName {
  display: inline;
  cursor: pointer;
}

.tableSetExpander {
  display: inline;
  padding-right: 8px;
  cursor: pointer;
  font-family: monospace;
}

#header-container {
  display: flex;
  flex-shrink: 0;
  background-color: #ddd;
  overflow: hidden;
  margin-left: 0px;
  padding-left: 40px;
}

#column-blocker {
  display: flex;
  background-color: #ddd;
  position: sticky;
  margin-left: -40px;
  width: 40px;
}

tx {
  display: flex;
}

sh {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
  padding-left: 20px;
}