/* Compiled on 2026-03-18 09:20:52 UTC */


/* ===== app.scss ===== */

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

body {
  color: var(--fg);
  background-color: var(--bg);
}
body .app-container {
  padding: 10px;
}

code {
  color: inherit;
}

.w-0 {
  width: 0;
}

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

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

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

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #222;
    --fg: #eee;
    --fg-secondary: #6c757d;
    --bg-secondary: #fff1;
    --fg-dark: #4d5053;
    --topbar-bg: #1a3557;
    --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);
  }
}

/* ===== 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);
    border-bottom: none;
  }
}

/* ===== fonts.scss ===== */

.monospace {
  font-family: monospace;
  font-size: 10pt;
}

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

.weight-thin {
  font-weight: 200;
}

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

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

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

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

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

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

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