:root {
  --form-error: red;
  --form-success: green;
}

/* Update default theme. */
#app-tab-title { border: none; }
#app-frame { border: none; }
[data-tab] { border: none; }

table { 
  width: 100%;
  border-collapse: collapse
}

thead tr {
  height: 2rem;
  color: var(--color-ui-text);
  background-color: var(--color-main);
}

th { text-align: left; }

.center-line {
  display: flex;
  align-items: center;
}

.symbol-column {
  width: 16%;
}

#status-marker [data-marker] {
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
  border-radius: 50%;
  background-color: rgb(120, 120, 120);
}

#status-marker[data-status="success"] [data-marker], #status-marker[data-status="success"] .tooltip-base { background-color: var(--form-success); }
#status-marker[data-status="failure"] [data-marker], #status-marker[data-status="failure"] .tooltip-base { background-color: var(--form-error); }

#results table th:first-child {
  text-align: left;
  width: 30%;
}

#results .bold { font-weight: bold; }
#results .failure { color: var(--form-error); }
#results .success { color: var(--form-success); }

[data-figure] { height: 100%; }
[data-figure] svg {
  width: 100%;
  height: 100%;
}

.inline-formula {
  padding-left: 0.5rem;
}

#about [data-translate="app"] { text-transform: uppercase; }