.gridWrapper {
  display: grid;
  grid-template-columns: min-content min-content;
  grid-template-rows: min-content;
  column-gap: 40px;
  height: 100vh;
}

.webGLContainer {
  width: fit-content;
  height: fit-content;
}

.mandelbrotPanel {
  grid-column: 1;
  grid-row: 1;
  display: block;
}

.juliaPanel {
  grid-column: 2;
  grid-row: 1;
  display: block;
  min-width: 500px;
  min-height: 500px;
}

.statusPanel {
  grid-column: 1;
  grid-row: 2;
  display: inline-block;
}

.buttonPanel {
  width: max-content;
}

.buttonPanel.hidden {
  display: none;
}

input[type=text] {
  width: 3em;
}

input[type=color] {
  width: 20px;
  height: 20px;
  padding: 0px;
}

input[type=color]::-webkit-color-swatch-wrapper {
  padding: 0px;
}

.colorRampGrid {
  display: grid;
  grid-template-columns: fit-content;
  gap: 0px;
  align-items: center;
}

.rampRowDiv, .fakeRampRowDiv {
  display: contents;
}

.removeRowButton {
  grid-column: 1;
  width: 1.5em;
  height: 1.1em;
  padding: 0 0em 1.1em 0em;
}

.leftColorInput, .fakeLeftColorInput {
  grid-column: 2;
}

.colorSVGHolder, .fakeColorSVGHolder {
  grid-column: 3;
  margin-top: 1%;
  width: fit-content;
  display: inline-block;
}

.rightColorInput, .fakeRightColorInput {
  grid-column: 4;
}

.fakeLeftColorInput, .fakeRightColorInput, .fakeColorSVGHolder {
  visibility: hidden;
}

.addRowButton {
  grid-column: 5;
  width: 1.4em;
  height: 1em;
  padding: 0 0em 1.1em 0em;
  margin-top: -120%;
  margin-left: 50%;
}