/* Compiled on 2026-03-21 00:53:03 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;
}

.border-none {
  border: none !important;
}

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);
}

table.table-striped tbody tr:nth-of-type(odd) {
  background-color: var(--bg-secondary) !important;
}

input[readonly], input[readonly]:focus, input[readonly]:hover {
  cursor: default;
  background-color: transparent;
  border: none;
  box-shadow: none;
  color: var(--fg);
}

/* ===== 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;
}

/* ===== db-profiler.scss ===== */

div#db-profile {
  position: fixed;
  bottom: 0;
  opacity: 1;
  width: 100%;
  height: 50vh;
  overflow-y: scroll;
  overflow-x: hidden;
  padding: 0;
  transform: translateY(0);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  z-index: 10000;
}

div#db-profile.slide-in {
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

@media (prefers-color-scheme: dark) {
  div#db-profile {
    background-color: rgba(17, 17, 17, 0.6666666667);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid #444;
  }
}
@media (prefers-color-scheme: light) {
  div#db-profile {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.062745098);
    border-top: 1px solid rgba(0, 0, 0, 0.1254901961);
  }
}