
.graph-panel {
  display: flex;
  /* align-items: stretch; */
  gap: 10px;

}
.full-width-wrapper {
  flex: 1 1 auto;
  width: 100%;
}

.scatter-wrapper {
  overflow: auto;
  flex: 0 0 50%;
  width: 50%;
  max-height: 100%;
  order: 0;
}

.graph-resize-handle {
  flex: 0 0 8px;
  cursor: col-resize;
  background: var(--grey-borders, #ddd);
  order: 1;
  align-self: stretch;
  position: relative;
  transition: background 0.15s;
}
/* grip dots */
.graph-resize-handle::after {
  content: "⋮";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-muted, #999);
  font-size: 24px;
  line-height: 1;
  pointer-events: none;
}
.graph-resize-handle:hover,
.graph-resize-handle:active {
  background: var(--dark-accent-main, #90a4ae);
}
.graph-resize-handle:hover::after,
.graph-resize-handle:active::after {
  color: #fff;
}
.is-resizing {
  -webkit-user-select: none;
  user-select: none;
}

.graph-container {
  flex: 1 1 auto;
  min-width: 200px;
  position: relative;
  padding: 20px 10px 10px;
  border-left: 1px solid var(--dark-red);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  order: 2;
}


.graph-container .close-graph {
  position: absolute;
  top: 15px;
  right: 15px;
  border: none;
  background: transparent;
  color: #000;
  font-size: 18px;
  cursor: pointer;
}


.graph-container .graph-content {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 0 10px 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}


.graph-container .graph-message {
  flex: 0 0 auto;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  background: var(--background-grey);
  border-radius: 4px;
  padding: 20px;
}
.graph-container .graph-echart {
  flex: 1 1 auto;
  min-height: 300px;
  width: 100%;
}
