html, body {
  /* Main color palette */
  --main-color: #5574A0;
  --complement-color: #516993;
  --backdrop-color: #f5f5f5;
  --highlighted-element-color: #A41E25;
  /* HTML element color definitions */
  --button-color: var(--complement-color);
  --table-header-color: var(--complement-color);
  --table-caption-color: var(--complement-color);
  --link-color: var(--complement-color);
  --selected-option-color: var(--highlighted-element-color);
  --indicate-process-running-color: var(--highlighted-element-color);
  --indicate-process-succeeded-color: green;
  --indicate-process-failed-color: red;
  --icon-color: white;
  font-family: Verdana,Arial,Helvetica,sans-serif;
}

.autocomplete .autocomplete-list .autocomplete-elements {
  display: block;
}

.detail-record table {
  width: auto;
  margin-bottom: 1rem;
}

.navbar-brand {
  font-weight: bold;
}

.field-container .icon {
  margin-right: 1rem !important;
}

tr.table-row:has(.invalid-url),
.invalid-url {
  display: none !important;
}

.detail-record .table-column td {
  display: block;
  margin: .2rem !important;
  padding: .2rem 1rem !important;
  background-color: var(--backdrop-color);
  border: 1px solid rgba(0,0,0,0.1) !important;
}

.sidebar.collapsible .logo {
  width: 8.5rem !important;
  margin-left: 0 !important;
  border-radius: 0 !important;
  border-top-right-radius: 8.5rem !important;
  border-bottom-right-radius: 8.5rem !important;
  transition: width var(--transition-speed) ease;
  -webkit-transition: width var(--transition-speed) ease;
}

.detail-record .table-row tr {
  padding: .1rem;
}

@media (max-height: 735px) {
  .logo {
    display: none;
  }
}

@media (max-height: 865px) {
  .logo {
    width: 3.5rem !important;
  }
}

@media (max-width: 870px) {
  .main {
    padding-bottom: var(--top-row-height);
  }

  .sidebar.collapsible {
    max-height: 40rem !important;
  }
}

.display-controls .option-trigger .option-list {
  right: 0;
  min-width: 8rem;
}
