
/* .outermost { */
/*     display: flex; */
/*     width: 100%; */
/*     height: 100%; */
/*     left: 0; */
/*     top: 0; */
/*     flex-direction: row; */
/*     align-items: stretch; */
/* } */
/*  */

#content {
    max-width: 95%;
}

.graphcolumn {
/*     resize: horizontal; */
/*     width: 60%; */
/*     min-width: 100px; */
    overflow-x: scroll;
}
/*  */
/* .witnesscolumn { */
/*     flex: 3; */
/*     min-width: 100px; */
/*     overflow: hidden; */
/* } */

.gridcontainer {
    position: relative;
    left: 0;
    top: 0;
    display: inline-block;
    /* display: grid; */
    grid-auto-flow: row;
    grid-auto-rows: max-content;
}

.gridsubcontainer {
    display: grid;
    justify-content: center;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
}


.griditem {
    grid-column-start: auto;
    grid-column-end: auto;
    grid-row-start: auto;
    grid-row-end: auto;
    margin: 20px;
    padding: 10px;
    border-radius: 5px;
    height: fit-content;
    z-index: 20;
    background-color: #eee;
}

.abstractbb {
}

.block_start {
    border: 2px solid blue;
}

.block_end {
    border: 2px solid blue;
}

.block_interesting {
    border: 2px solid #07c400;
}

.block_notinteresting {
    border: 2px solid #f00000;
}

svg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
}

table {
  border-collapse: collapse;
}

td {
  padding-left: 5px;
}

.featurelist {
  margin: 5px;
}

#witnessiframe {
  height: 100%;
  width: 100%;
  border: 0px;
}

.center {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.centerbox {
  border: 2px solid gray;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  width: 200px;
}

.highlightedcomponent {
    font-weight: bold;
    color: orangered;
}

#measurement_window {
    padding: 0px;
    padding-top: 60px;
    bottom: 0px;
    display: none;
    z-index: 500;
    overflow: hidden;
    background-color: var(--content-bg);
}

#measurement_window_close_btn {
    position: absolute;
    top: 60px;
    right: 16px;
}

#measurement_iframe {
    height: calc(100% - 60px);
    width: 100%;
    border: 0px;
}
