:root {
  --main-background-color: rgb(176, 175, 175);
  --content-background-color: rgba(0, 191, 255, 0.726);
  --content-border-color: black;
  --checkbox-or-radio-border-color: rgb(80, 79, 79);
  --checkbox-or-radio-background-color: rgb(222, 223, 228);
  --block-thread-color: rgb(152, 17, 89);
  --button-color: rgb(255, 174, 0);
  --button-hover-color: rgb(174, 126, 24);
  --button-border-color: black;
}

html, body {
  margin: 0px;
  padding: 0px;
  background-color: var(--main-background-color);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.main-container {
  width: 600px;
  margin: 20px;
  display: flex;
  border-style: solid;
  background-color: var(--content-background-color);
  border-color: var(--content-border-color);
  border-radius: 10px;
  border-width: 2px;
  flex-direction: column;
}

.table-title {
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.table {
  width: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  border-style: solid;
  border-color: black;
  border-width: 2px;
  margin: 0px 50px 10px 50px;
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
}

.table-col {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.table-col .title {
  flex-grow: 1;
  padding: 20px;
}

.title-text {
  font-size: 11px;
}

.table-col .result {
  flex-grow: 1;
  padding: 20px;
}

.table-col .title-text-container {
  display: flex;
  justify-content: end;
}

.table-col .result-text-container {
  display: flex;
  justify-content: start;
}

.textbox-container {
  width: 100%;
  flex-grow: 0.25;
  display: flex;
  justify-content: left;
  padding-top: 20px;
  padding-bottom: 20px;
}

.textbox-container .label-container {
  display: flex;
  flex-grow: 1;
}

.textbox-container .label {
  width: 100%;
  text-align: right;
  padding-right: 20px;
}

.textbox-container input {
  width: 90%;
}

.help-container {
  margin-left: 10px;
  border: 2px solid black;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  height: 16px;
  width: 16px;
  display: flex;
  justify-content: center;
  /* flex-grow: 1; */
}

.textbox-container .whitespace {
  flex-grow: 1;
}

.textbox-container svg {
  width: 100%;
}

span.tooltip {
  visibility: hidden;
  background-color: #272626;
  color: #fff;
  border-radius: 5px;
  padding-left: 20px;
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  position: absolute;
  z-index: 1;
  /* right: 0%; */
  transform: translateX(60%);
  opacity: 0;
  transition: opacity 0.3s;
  white-space: no-wrap;
  width: 200px;
}

.help-container:hover span.tooltip {
  visibility: visible;
  opacity: 1;
}

.sync-checkbox-main-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 60px;
  margin-top: 20px;
}

.sync-checkbox-inner-container {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.sync-checkbox {
  transform: scale(2);
}

.sync-checkbox-label {
  padding-left: 12px;
  font-size: 16px;
  font-weight: bold;
  color: var(--block-thread-color);
}

.buttons {
  flex-grow: 0.85;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0px 20px 20px 20px;
  margin-top: 12px;
}

.checkboxes-and-radios {
  margin-top: 10px;
  padding-left: 16.5%;
  padding-right: 16.5%;
  flex-grow: 1;
}

.checkbox-or-radio {
  display: flex;
  align-items: center;
  padding-left: 6px;
  padding-top: 6px;
  padding-bottom: 6px;
  margin-bottom: 6px;
}

.checkbox-or-radio.radios {
  background-color: var(--checkbox-or-radio-background-color);
  border-color: var(--checkbox-or-radio-border-color);
  border-style: solid;
  border-width: 1px;
  border-radius: 2.5px;
  justify-content: left;
}

.checkboxes {
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: normal;
}

.radios-header {
  font-weight: bold;
  padding-bottom: 3px;
}

.radio-container {
  margin: 6px;
}

input[type="checkbox"].sync-checkbox {
  accent-color: var(--block-thread-color);
}

.checkbox-label {
  padding-left: 6px;
}

.button {
  background-color: var(--button-color);
  border-color: var(--button-border-color);
  margin: 1.5px 17px 1.5px 0px;
  border-style: solid;
  border-width: 2px;
  height: 35px;
  width: fit-content;
  padding: 0px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.button.pressable:hover {
  background-color: var(--button-hover-color);
  cursor: pointer;
}

.progress-container {
  display: flex;
  align-items: center;
}

.hidden {
  display: none;
}

.plot-container {
  width: 600px;
  margin: 20px;
  border-width: 4px;
  border-style: solid;
  border-color: var(--content-border-color);
}
