/* Compiled on 2026-01-11 07:14:26 UTC */


/* ===== colors-dark.scss ===== */

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #222;
    --fg: #eee;
    --fg-secondary: #6c757d;
    --bg-secondary: #fff1;
    --fg-dark: #4d5053;
    --topbar-bg: #193450;
    --border: #444;
    --border-dark: #FFF1;
  }
  .dropdown-menu {
    background-color: #181818;
    border-color: var(--border);
    box-shadow: 0 5px 1.5rem rgba(0, 0, 0, 0.4);
  }
  .dropdown-menu .dropdown-item {
    color: var(--fg);
  }
  .dropdown-menu .dropdown-item:hover {
    background-color: var(--border);
  }
  .dropdown-menu hr.dropdown-divider {
    border-color: var(--border);
  }
  .dropdown-menu h6.dropdown-header {
    background-color: rgba(255, 255, 255, 0.0392156863);
    border-top: 1px solid var(--border);
    color: var(--fg-dark);
  }
  table.table th {
    background-color: rgba(255, 255, 255, 0.0666666667);
  }
  table.table td {
    background-color: rgba(0, 0, 0, 0.1882352941);
  }
  table.table th, table.table td {
    color: var(--fg);
    border-bottom: none;
    border-left: none;
    border-right: none;
  }
  table.table td {
    border-top: 1px solid var(--border-dark);
  }
  .table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: #121212;
  }
}

/* ===== colors-light.scss ===== */

@media (prefers-color-scheme: light) {
  :root {
    --bg: #f5f5f5;
    --bg-secondary: #0001;
    --fg: #111111;
    --topbar-bg: #193450;
    --border-light: #0000000A;
  }
  .dropdown-menu h6.dropdown-header {
    background-color: rgba(0, 0, 0, 0.0392156863);
    border-top: 1px solid var(--border-light);
    color: #aaa;
  }
  table.table th {
    background-color: rgba(0, 0, 0, 0.0666666667);
  }
  table.table th, table.table td {
    color: var(--fg);
    border-top: 1px solid var(--border-light);
  }
}

/* ===== layout.scss ===== */

:root {
  --border-radius: 0.5rem;
}

body.app {
  color: var(--fg);
  background-color: var(--bg);
}

.monospace {
  font-family: monospace;
  font-size: 95%;
}

.app-shell {
  padding: 1rem;
}

.w-0 {
  width: 0px;
}

.valign-middle {
  vertical-align: middle;
}

.valign-top {
  vertical-align: text-top;
}

.valign-bottom {
  vertical-align: bottom;
}

.valign-baseline {
  vertical-align: baseline;
}

.transparent {
  background-color: transparent !important;
}

.table-borderless tr td {
  border: none !important;
}

th:first-child, td:first-child {
  padding-left: var(--border-radius);
}

th:last-child, td:last-child {
  padding-right: var(--border-radius);
}

.table.with-radius {
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}
.table.with-radius tr:first-child {
  border-top-left-radius: var(--border-radius);
}
.table.with-radius tr:first-child th:first-child {
  border-top-left-radius: var(--border-radius);
}
.table.with-radius tr:first-child {
  border-top-right-radius: var(--border-radius);
}
.table.with-radius tr:first-child th:last-child {
  border-top-right-radius: var(--border-radius);
}
.table.with-radius tr:last-child {
  border-bottom-left-radius: var(--border-radius);
}
.table.with-radius tr:last-child td:first-child {
  border-bottom-left-radius: var(--border-radius);
}
.table.with-radius tr:last-child {
  border-bottom-right-radius: var(--border-radius);
}
.table.with-radius tr:last-child td:last-child {
  border-bottom-right-radius: var(--border-radius);
}

.navbar .dropdown-toggle::after {
  content: none;
}

.weight-hairline {
  font-weight: 100;
}

.weight-light {
  font-weight: 300;
}

.weight-normal {
  font-weight: 400;
}

.weight-medium {
  font-weight: 500;
}

.weight-semibold {
  font-weight: 600;
}

.weight-bold {
  font-weight: 700;
}

.weight-extrabold {
  font-weight: 800;
}

.weight-black {
  font-weight: 900;
}