.uplot, .uplot *, .uplot :before, .uplot :after {
  box-sizing: border-box;
}

.uplot {
  width: max-content;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  line-height: 1.5;
}

.uplot .title {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

.uplot .wrap {
  -webkit-user-select: none;
  user-select: none;
  position: relative;
}

.uplot .over, .uplot .under {
  position: absolute;
  overflow: hidden;
}

.uplot canvas {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

.uplot .legend {
  text-align: center;
  margin: auto;
  font-size: 14px;
}

.uplot .legend.inline {
  display: block;
}

.uplot .legend.inline * {
  display: inline-block;
}

.uplot .legend.inline tr {
  margin-right: 16px;
}

.uplot .legend th {
  font-weight: 600;
}

.uplot .legend th > * {
  vertical-align: middle;
  display: inline-block;
}

.uplot .legend .ident {
  width: 1em;
  height: 1em;
  border: 2px solid #0000;
  margin-right: 4px;
}

.uplot .legend.inline th:after {
  content: ":";
  vertical-align: middle;
}

.uplot .legend .series > * {
  padding: 4px;
}

.uplot .legend .series th {
  cursor: pointer;
}

.uplot .legend .off > * {
  opacity: .3;
}

.uplot .select {
  pointer-events: none;
  background: #00000012;
  position: absolute;
}

.uplot .select.off {
  display: none;
}

.uplot .cursor-x, .uplot .cursor-y {
  pointer-events: none;
  will-change: transform;
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
}

.uplot .cursor-x {
  height: 100%;
  border-right: 1px dashed #607d8b;
}

.uplot .cursor-y {
  width: 100%;
  border-bottom: 1px dashed #607d8b;
}

.uplot .cursor-pt {
  filter: brightness(85%);
  pointer-events: none;
  will-change: transform;
  z-index: 100;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

@font-face {
  font-family: icomoon;
  src: url("icomoon.f7eef27e.ttf") format("truetype"), url("icomoon.826fedc0.woff") format("woff"), url("icomoon.cb96eb9d.svg#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  speak: none;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  font-family: icomoon !important;
}

.icon-star:before {
  content: "";
}

.icon-star-o:before {
  content: "";
}

.icon-lock:before {
  content: "";
}

.icon-eye:before {
  content: "";
}

.icon-eye-slash:before {
  content: "";
}

.icon-cogs:before, .icon-gears:before {
  content: "";
}

.icon-globe:before {
  content: "";
}

.icon-code:before {
  content: "";
}

.icon-sort-amount-desc:before {
  content: "";
}

.icon-street-view:before {
  content: "";
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #fff;
  --color-text: #000;
  --color-text-light: #555;
  --color-accent: #ff3b30;
  --color-highlight: #007aff;
  --color-border: #e5e5e5;
  --color-card-bg: #f5f5f7;
  --font-main: "Inter", sans-serif;
  --font-weight-regular: 400;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  --spacing-unit: 8px;
  --border-radius: 4px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-bg: #1c1c1e;
    --color-text: #fff;
    --color-text-light: #8e8e93;
    --color-border: #38383a;
    --color-card-bg: #2c2c2e;
  }
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-main);
  font-weight: var(--font-weight-regular);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: var(--color-highlight);
}

#push {
  width: 100%;
  max-width: 1400px;
  padding: calc(var(--spacing-unit) * 4);
  gap: calc(var(--spacing-unit) * 4);
  flex-direction: column;
  margin: 0 auto;
  display: flex;
}

strong {
  font-weight: var(--font-weight-bold);
}

header {
  padding-bottom: calc(var(--spacing-unit) * 4);
  border-bottom: 2px solid var(--color-border);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

header .column-left {
  gap: var(--spacing-unit);
  flex-direction: column;
  display: flex;
}

header .logo-image {
  width: 48px;
  height: 48px;
}

header .logo-text {
  font-size: 4rem;
  font-weight: var(--font-weight-black);
  letter-spacing: -.05em;
  text-transform: uppercase;
  line-height: .9;
}

header .logo-status {
  color: var(--color-text-light);
  max-width: 600px;
  font-size: 1.1rem;
}

.global-stat {
  color: var(--color-text);
  font-weight: var(--font-weight-bold);
}

header .column-right {
  gap: calc(var(--spacing-unit) * 2);
  display: flex;
}

.header-button {
  cursor: pointer;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 3);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  text-align: right;
  font-size: .9rem;
  transition: all .2s;
  display: none;
}

.header-button-single {
  display: block;
}

.header-button:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

.header-button span {
  margin-bottom: 4px;
  font-size: 1.5rem;
  display: block;
}

#status-overlay {
  width: 100%;
  height: 100%;
  background: var(--color-bg);
  z-index: 9999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

#status-overlay .logo-text {
  font-size: 3rem;
  font-weight: var(--font-weight-black);
  margin: calc(var(--spacing-unit) * 2) 0;
}

#big-graph {
  width: 100%;
  margin-bottom: calc(var(--spacing-unit) * 2);
  border: 1px solid var(--color-border);
  padding: calc(var(--spacing-unit) * 2);
  border-radius: var(--border-radius);
}

#big-graph-controls {
  margin-bottom: calc(var(--spacing-unit) * 4);
  display: none;
}

#big-graph-controls-drawer {
  background: var(--color-card-bg);
  padding: calc(var(--spacing-unit) * 2);
  border-radius: var(--border-radius);
}

.graph-controls-setall {
  gap: calc(var(--spacing-unit) * 2);
  margin-top: calc(var(--spacing-unit) * 2);
  justify-content: center;
  display: flex;
}

.button {
  cursor: pointer;
  padding: var(--spacing-unit) calc(var(--spacing-unit) * 2);
  background: var(--color-text);
  color: var(--color-bg);
  border-radius: var(--border-radius);
  font-weight: var(--font-weight-bold);
  font-size: .9rem;
  transition: opacity .2s;
}

.button:hover {
  opacity: .8;
}

#server-list {
  gap: calc(var(--spacing-unit) * 3);
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  display: grid;
}

.server {
  background: var(--color-card-bg);
  padding: calc(var(--spacing-unit) * 3);
  border-radius: var(--border-radius);
  column-gap: calc(var(--spacing-unit) * 3);
  row-gap: calc(var(--spacing-unit) * 2);
  width: 100%;
  border: 1px solid var(--color-border);
  grid-template-rows: auto auto;
  grid-template-columns: auto 1fr;
  margin: 0;
  transition: transform .2s, box-shadow .2s;
  display: grid;
}

.server:hover {
  border-color: var(--color-text);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px #0000001a;
}

.server .column-favicon {
  flex-direction: column;
  grid-area: 1 / 1 / 2 / 2;
  align-items: center;
  display: flex;
}

.server-favicon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius);
  background: #ddd;
}

.server-rank {
  text-align: center;
  color: var(--color-text-light);
  font-size: .8rem;
  font-weight: var(--font-weight-bold);
  margin-top: 4px;
  display: block;
}

.server .column-status {
  flex-direction: column;
  grid-area: 1 / 2 / 2 / 3;
  justify-content: center;
  display: flex;
}

.server-name {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: -.02em;
  margin-bottom: 4px;
  line-height: 1.2;
  display: block;
}

.server-value {
  color: var(--color-text);
  font-weight: var(--font-weight-bold);
}

.server-label {
  display: none;
}

#server-list .server-label {
  color: var(--color-text-light);
  font-size: .9rem;
  display: block;
}

.server-error {
  color: var(--color-accent);
  font-weight: var(--font-weight-bold);
  display: none;
}

.server .column-graph {
  width: 100%;
  height: 100px;
  margin-top: var(--spacing-unit);
  grid-area: 2 / 1 / 3 / 3;
}

.server-is-favorite {
  color: var(--color-highlight);
}

.server-is-not-favorite {
  color: var(--color-border);
}

.server-is-not-favorite:hover {
  color: var(--color-highlight);
}

#perc-bar {
  height: 8px;
  width: 100%;
  margin-bottom: calc(var(--spacing-unit) * 4);
  border-radius: 4px;
  display: flex;
  overflow: hidden;
}

footer {
  border-top: 1px solid var(--color-border);
  padding: calc(var(--spacing-unit) * 4) 0;
  text-align: center;
  color: var(--color-text-light);
  width: 100%;
  margin-top: auto;
  font-size: .9rem;
  display: block !important;
}

#tooltip {
  background: var(--color-text);
  color: var(--color-bg);
  font-size: .8rem;
  font-weight: var(--font-weight-bold);
  z-index: 10000;
  pointer-events: none;
  border-radius: 4px;
  padding: 4px 8px;
  display: none;
  position: absolute;
}

@media screen and (max-width: 768px) {
  header {
    gap: calc(var(--spacing-unit) * 3);
    flex-direction: column;
  }

  header .column-right {
    width: 100%;
    justify-content: space-between;
  }

  #server-list {
    grid-template-columns: 1fr;
  }
}

#big-graph-checkboxes {
  width: 100%;
  margin: 15px auto 0;
}

.graph-controls-grid {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  display: grid;
}

.graph-control-wrapper {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  cursor: pointer;
  padding: 8px 12px;
  transition: all .2s;
}

.graph-control-wrapper:hover {
  background: var(--color-text);
  color: var(--color-bg);
  border-color: var(--color-text);
}

.graph-control-wrapper label {
  cursor: pointer;
  width: 100%;
  align-items: center;
  display: flex;
}

.graph-control {
  accent-color: var(--color-highlight);
  cursor: pointer;
  margin-right: 10px;
}

.graph-control-label {
  font-size: .9rem;
  font-weight: 600;
}

#big-graph-controls-drawer .graph-controls-setall {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  display: flex;
}

#big-graph-controls-drawer .graph-controls-setall .button {
  background: var(--color-card-bg);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  padding: 8px 16px;
  font-size: .85rem;
}

#big-graph-controls-drawer .graph-controls-setall .button:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

#big-graph-controls-drawer .graph-controls-setall .button .icon-star {
  color: var(--color-accent);
}

.server-info-btn {
  color: var(--color-text-dim);
  margin-left: 10px;
  font-size: .9em;
  text-decoration: none;
  transition: color .2s;
}

.server-info-btn:hover {
  color: var(--color-highlight);
}

/*# sourceMappingURL=index.642b9150.css.map */
