.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 {
  --background: #040506;
  --foreground: #e0e6eb;
  --card: #090a0c;
  --card-foreground: #e0e6eb;
  --primary: #2982ff;
  --primary-dark: #1e56cc;
  --primary-hover: #1a4ab5;
  --secondary: #0c0f12;
  --muted: #101418;
  --muted-foreground: #7b899d;
  --border: #16191d;
  --destructive: #811d1d;
  --radius: .5rem;
  --color-dark-gray: var(--muted-foreground);
  --color-gold: gold;
  --color-purple: var(--primary);
  --color-blue: var(--primary);
  --color-blue-inverted: var(--primary);
  --background-color: var(--card);
  --text-decoration-color: var(--border);
  --text-color: var(--foreground);
  --text-color-inverted: var(--background);
}

body {
  background-color: var(--background);
  color: var(--foreground);
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: linear-gradient(to right, #64748b14 1px, #0000 1px), linear-gradient(#64748b14 1px, #0000 1px);
  background-size: 40px 40px;
  font-family: Inter, Open Sans, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

html, body {
  height: 100%;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: #5ca0ff;
  cursor: pointer;
}

strong {
  font-weight: 700;
}

.navbar {
  z-index: 100;
  transition: all .3s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.navbar-bg {
  opacity: 0;
  pointer-events: none;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 120%;
  background: linear-gradient(#04050699 0%, #04050666 60%, #0000 100%);
  transition: opacity .5s;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#000 50%, #0000 100%);
  mask-image: linear-gradient(#000 50%, #0000 100%);
}

.navbar.scrolled .navbar-bg {
  opacity: 1;
}

.navbar-inner {
  z-index: 10;
  max-width: 1400px;
  height: 80px;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  position: relative;
}

.navbar-logo {
  color: var(--primary);
  align-items: center;
  gap: 12px;
  text-decoration: none;
  display: flex;
}

.navbar-logo-icon {
  width: 32px;
  height: 32px;
  background: #2982ff26;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  transition: background .3s;
  display: flex;
}

.navbar-logo:hover .navbar-logo-icon {
  background: #2982ff40;
}

.navbar-logo-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.navbar-logo-text {
  letter-spacing: -.3px;
  font-size: 17px;
  font-weight: 700;
}

.navbar-center-text {
  color: var(--muted-foreground);
  letter-spacing: -.2px;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar-right {
  align-items: center;
  gap: 16px;
  display: flex;
}

.navbar-btn {
  background: var(--primary-dark);
  color: #fff;
  cursor: pointer;
  border: 1px solid #2982ff4d;
  border-radius: 8px;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
  display: inline-flex;
}

.navbar-btn:hover {
  background: var(--primary-hover);
  color: #fff;
}

@media (max-width: 900px) {
  .navbar-center-text, .navbar-right {
    display: none;
  }
}

.navbar-spacer {
  height: 80px;
}

#push {
  min-height: calc(100% - 80px);
  display: none;
  position: relative;
}

#perc-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin: 0 5%;
  position: relative;
  overflow-x: hidden;
}

#perc-bar .perc-bar-part {
  height: 100%;
  display: inline-block;
  position: absolute;
}

header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 5%;
  overflow: auto;
}

header .column-left {
  float: left;
}

header .column-right {
  float: right;
  gap: 8px;
  display: flex;
}

header .logo-image {
  --fixed-logo-image-size: 36px;
  width: var(--fixed-logo-image-size);
  height: var(--fixed-logo-image-size);
  vertical-align: middle;
  margin-right: 8px;
  display: inline-block;
}

header .logo-text {
  letter-spacing: -1px;
  vertical-align: middle;
  color: var(--primary);
  font-size: 32px;
  font-weight: 700;
  display: inline-block;
}

header .logo-status {
  color: var(--muted-foreground);
  margin-top: 4px;
  font-size: 16px;
}

header .logo-status .global-stat {
  color: var(--primary);
}

header .header-button {
  color: var(--foreground);
  width: auto;
  height: auto;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  line-height: 18px;
}

header .header-button > span:first-of-type {
  margin-bottom: 4px;
  font-size: 18px;
  display: block;
}

header .header-button-single {
  cursor: pointer;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  transition: all .2s;
  display: none;
}

header .header-button-single:hover {
  border-color: var(--primary);
  background: var(--muted) !important;
}

.server-lookup-section {
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 0 5% 32px;
}

.server-lookup-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  padding: 32px;
  transition: border-color .2s;
}

.server-lookup-card:hover {
  border-color: #2982ff4d;
}

.server-lookup-header {
  text-align: center;
  margin-bottom: 24px;
}

.server-lookup-header h2 {
  color: var(--foreground);
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 700;
  display: flex;
}

.server-lookup-header h2 svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.server-lookup-header p {
  color: var(--muted-foreground);
  font-size: 14px;
}

.server-lookup-form {
  gap: 10px;
  margin-bottom: 0;
  display: flex;
}

.server-lookup-input {
  height: 44px;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  outline: none;
  flex: 1;
  padding: 0 14px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color .2s;
}

.server-lookup-input::placeholder {
  color: var(--muted-foreground);
}

.server-lookup-input:focus {
  border-color: var(--primary);
}

.server-lookup-select {
  height: 44px;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  cursor: pointer;
  min-width: 140px;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23788798' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-position: right 12px center;
  background-repeat: no-repeat;
  outline: none;
  padding: 0 32px 0 14px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color .2s;
}

.server-lookup-select:focus {
  border-color: var(--primary);
}

.server-lookup-btn {
  height: 44px;
  background: var(--primary-dark);
  border-radius: var(--radius);
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid #2982ff4d;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
  display: inline-flex;
}

.server-lookup-btn:hover {
  background: var(--primary-hover);
}

.server-lookup-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.server-lookup-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.server-lookup-btn .spinner {
  animation: 1s linear infinite spin;
}

.server-lookup-error {
  border-radius: var(--radius);
  color: #ed5e5e;
  background: #811d1d26;
  border: 1px solid #811d1d4d;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 16px;
  font-size: 14px;
  display: none;
}

.server-lookup-error svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.server-lookup-error .error-title {
  font-weight: 600;
}

.server-lookup-error .error-msg {
  opacity: .9;
  font-size: 13px;
}

.server-lookup-results {
  margin-top: 20px;
  display: none;
}

.lookup-result-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
}

.lookup-result-header {
  border-bottom: 1px solid var(--border);
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  display: flex;
}

.lookup-result-header-left {
  align-items: center;
  gap: 12px;
  display: flex;
}

.lookup-result-header-left svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #22c55e;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lookup-result-title {
  font-size: 18px;
  font-weight: 700;
}

.lookup-result-subtitle {
  color: var(--muted-foreground);
  font-size: 13px;
}

.lookup-result-badge {
  color: #22c55e;
  background: #21c45d26;
  border: 1px solid #21c45d4d;
  border-radius: 9999px;
  align-items: center;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.lookup-result-badge.offline {
  color: #ed5e5e;
  background: #811d1d26;
  border-color: #811d1d4d;
}

.lookup-result-body {
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  display: flex;
}

.lookup-server-icon {
  align-items: center;
  gap: 16px;
  display: flex;
}

.lookup-server-icon-img {
  width: 64px;
  height: 64px;
  border-radius: calc(var(--radius));
  background: var(--muted);
  object-fit: cover;
  border: 2px solid #2982ff33;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.lookup-server-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lookup-server-icon-img .icon-placeholder svg {
  width: 28px;
  height: 28px;
  stroke: var(--muted-foreground);
  fill: none;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lookup-server-icon-info h3 {
  font-size: 15px;
  font-weight: 600;
}

.lookup-server-icon-info p {
  color: var(--muted-foreground);
  font-size: 13px;
}

.lookup-section-title {
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
}

.lookup-section-title svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lookup-motd-box {
  background: var(--muted);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: Courier New, monospace;
  font-size: 14px;
  line-height: 1.5;
}

.lookup-players-count {
  color: var(--primary);
  font-size: 24px;
  font-weight: 700;
}

.lookup-players-label {
  color: var(--muted-foreground);
  margin-top: 2px;
  font-size: 13px;
}

.lookup-players-list {
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
  display: flex;
}

.lookup-player-badge {
  background: var(--secondary);
  border: 1px solid var(--border);
  color: var(--foreground);
  border-radius: 9999px;
  align-items: center;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
}

.lookup-player-badge.more {
  color: var(--muted-foreground);
  border-style: dashed;
}

.lookup-info-grid {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  display: grid;
}

.lookup-info-item h4 {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 600;
}

.lookup-info-item p {
  color: var(--muted-foreground);
  word-break: break-all;
  font-size: 13px;
}

@media (max-width: 600px) {
  .server-lookup-form {
    flex-direction: column;
  }

  .server-lookup-select {
    min-width: 100%;
  }

  .lookup-info-grid {
    grid-template-columns: 1fr;
  }
}

#big-graph {
  padding-right: 65px;
}

#big-graph, #big-graph-controls, #big-graph-checkboxes {
  width: 90%;
}

#big-graph-checkboxes > table {
  width: 100%;
}

#big-graph {
  margin: 0 auto;
}

#big-graph-controls {
  margin: 10px auto;
  display: none;
}

.graph-controls-show {
  color: var(--foreground);
}

#big-graph-controls .icon-star {
  color: var(--color-gold);
}

#big-graph-controls-drawer {
  background: var(--card);
  color: var(--foreground);
  border-radius: calc(var(--radius) * 2);
  border: 1px solid var(--border);
  padding-bottom: 10px;
  display: none;
  overflow: auto;
}

#big-graph-controls-drawer .graph-controls-setall {
  text-align: center;
  margin: 15px 0;
  display: block;
}

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

#server-list {
  flex-wrap: wrap;
  justify-content: center;
  padding: 8px 0;
  display: flex;
  overflow: auto;
}

.server {
  width: 800px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  margin: 4px 5px;
  padding: 12px 16px;
  transition: border-color .2s;
  display: inline-block;
}

.server:hover {
  cursor: pointer;
  border-color: #2982ff4d;
}

.server .column {
  float: left;
}

.server .column-favicon {
  width: 80px;
}

.server .column-favicon .server-favicon {
  --fixed-server-favicon-size: 64px;
  width: var(--fixed-server-favicon-size);
  height: var(--fixed-server-favicon-size);
  border-radius: var(--radius);
  margin-top: 5px;
}

.server .column-favicon .server-rank {
  width: 64px;
  text-align: center;
  color: var(--muted-foreground);
  font-size: 12px;
  display: block;
}

.server .column-status {
  width: 282px;
}

.server .column-status .server-name {
  font-weight: 600;
  display: inline-block;
}

.server .column-status .server-error {
  color: #ed5e5e;
  display: none;
}

.server .column-status .server-label {
  color: var(--muted-foreground);
  font-size: 14px;
  display: none;
}

.server .column-status .server-value {
  color: var(--muted-foreground);
  font-size: 14px;
}

.server .column-status .server-value-highlight {
  color: var(--primary);
  font-weight: 700;
}

.server .column-graph {
  height: 100px;
  width: 400px;
}

.server-is-favorite {
  cursor: pointer;
  color: var(--color-gold);
}

.server-is-favorite:hover:before {
  content: "";
}

.server-is-not-favorite {
  cursor: pointer;
  color: var(--muted);
}

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

.global-stat {
  color: var(--primary);
  font-weight: 700;
}

#settings-toggle {
  background: var(--card);
}

footer {
  border-top: 1px solid var(--border);
  background: var(--background);
  width: 100%;
  margin: 0;
  padding: 0;
  display: none;
}

.footer-cta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  transform: translateY(-50%);
}

.footer-cta-inner {
  border-radius: calc(var(--radius) * 3);
  background: linear-gradient(to right, #1763cf, #006aff, #1763cf);
  border: 1px solid #478beb33;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 32px 40px;
  display: flex;
}

.footer-cta-text h3 {
  color: #fff;
  margin-bottom: 6px;
  font-size: 24px;
  font-weight: 700;
}

.footer-cta-text p {
  color: #fffc;
  font-size: 15px;
}

.footer-cta-buttons {
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
}

.footer-cta-btn {
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}

.footer-cta-btn.primary {
  color: #0060e6;
  background: #fff;
}

.footer-cta-btn.primary:hover {
  background: #ffffffe6;
}

.footer-cta-btn.outline {
  color: #fff;
  background: none;
  border: 1px solid #fff6;
}

.footer-cta-btn.outline:hover {
  color: #fff;
  background: #ffffff1a;
}

.footer-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 32px 32px;
}

.footer-grid {
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  display: grid;
}

.footer-brand p {
  color: var(--muted-foreground);
  max-width: 360px;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.7;
}

.footer-brand-logo {
  align-items: center;
  gap: 10px;
  display: flex;
}

.footer-brand-logo img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-brand-logo span {
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
}

.footer-socials {
  gap: 8px;
  margin-top: 16px;
  display: flex;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  transition: all .2s;
  display: flex;
}

.footer-social-link:hover {
  color: var(--primary);
  border-color: #2982ff4d;
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
}

.footer-col h3 {
  color: var(--foreground);
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
}

.footer-col-links {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.footer-col-link {
  color: var(--muted-foreground);
  align-items: center;
  gap: 8px;
  font-size: 14px;
  text-decoration: none;
  transition: color .2s;
  display: flex;
}

.footer-col-link:hover {
  color: var(--primary);
}

.footer-col-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
}

.footer-bottom p {
  color: var(--muted-foreground);
  font-size: 12px;
}

.footer-bottom-links {
  gap: 24px;
  display: flex;
}

.footer-bottom-links a {
  color: var(--muted-foreground);
  font-size: 12px;
  text-decoration: none;
  transition: color .2s;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-cta-inner {
    text-align: center;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

#status-overlay {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--foreground);
  border-radius: calc(var(--radius) * 3);
  text-align: center;
  width: 380px;
  padding: 32px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#status-overlay .logo-image {
  --fixed-logo-image-size: 72px;
  width: var(--fixed-logo-image-size);
  height: var(--fixed-logo-image-size);
}

#status-overlay .logo-text {
  color: var(--primary);
  letter-spacing: -1px;
  margin-top: 8px;
  font-size: 36px;
}

#status-text {
  color: var(--muted-foreground);
  margin-top: 8px;
  font-size: 14px;
}

#tooltip {
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--foreground);
  z-index: 10000;
  padding: 8px 12px;
  font-size: 13px;
  display: none;
  position: absolute;
  box-shadow: 0 8px 30px #0000004d;
}

.button {
  background: var(--primary-dark);
  border-radius: var(--radius);
  color: #fff;
  border: 1px solid #2982ff4d;
  padding: 6px 14px;
  font-size: 13px;
  transition: all .2s;
}

.button:hover {
  background: var(--primary-hover);
  color: #fff;
}

@media only screen and (max-width: 1050px) {
  header {
    padding: 16px 5% !important;
  }

  .header-possible-row-break {
    width: 100%;
    text-align: center;
    padding-top: 12px;
  }

  .header-possible-row-break:last-of-type {
    margin-bottom: 12px;
  }

  header .column-right {
    justify-content: center;
  }
}

.uplot .select {
  background: var(--primary);
  opacity: .2;
}

.search-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5% 16px;
}

.server-search-input {
  width: 100%;
  height: 44px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  outline: none;
  padding: 0 16px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color .2s;
}

.server-search-input::placeholder {
  color: var(--muted-foreground);
}

.server-search-input:focus {
  border-color: var(--primary);
}

#server-detail {
  min-height: calc(100vh - 80px);
  padding: 24px 5%;
}

.server-detail-inner {
  max-width: 900px;
  margin: 0 auto;
}

.server-detail-back {
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  border-radius: var(--radius);
  cursor: pointer;
  background: none;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 16px;
  font-family: inherit;
  font-size: 14px;
  transition: all .2s;
  display: inline-flex;
}

.server-detail-back:hover {
  color: var(--foreground);
  border-color: var(--primary);
}

.server-detail-back svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.server-detail-header {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px 24px;
  display: flex;
}

.server-detail-favicon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  object-fit: cover;
  border: 2px solid #2982ff33;
  flex-shrink: 0;
}

.server-detail-header-info {
  min-width: 0;
  flex: 1;
}

.server-detail-name {
  color: var(--foreground);
  font-size: 22px;
  font-weight: 700;
}

.server-detail-address {
  color: var(--muted-foreground);
  font-size: 13px;
}

.server-detail-badge {
  border-radius: 9999px;
  flex-shrink: 0;
  align-items: center;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.server-detail-badge.online {
  color: #22c55e;
  background: #21c45d26;
  border: 1px solid #21c45d4d;
}

.server-detail-badge.offline {
  color: #ed5e5e;
  background: #811d1d26;
  border: 1px solid #811d1d4d;
}

.server-detail-graph-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  margin-bottom: 24px;
  padding: 24px;
}

.server-detail-graph-card h3 {
  color: var(--foreground);
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
}

#server-detail-graph {
  width: 100%;
}

.server-detail-stats {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  display: grid;
}

.server-detail-stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  text-align: center;
  padding: 20px;
  transition: border-color .2s;
}

.server-detail-stat:hover {
  border-color: #2982ff4d;
}

.server-detail-stat-value {
  color: var(--primary);
  margin-bottom: 4px;
  font-size: 28px;
  font-weight: 700;
}

.server-detail-stat-label {
  color: var(--muted-foreground);
  font-size: 13px;
}

@media (max-width: 700px) {
  .server-detail-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .server-detail-header {
    flex-wrap: wrap;
  }
}

@media (max-width: 400px) {
  .server-detail-stats {
    grid-template-columns: 1fr;
  }
}

.global-stats-panel {
  max-width: 1200px;
  margin: 0 auto 16px;
  padding: 0 5%;
}

.global-stats-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  display: grid;
}

.global-stats-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  text-align: center;
  padding: 20px;
  transition: border-color .2s;
}

.global-stats-item:hover {
  border-color: #2982ff4d;
}

.global-stats-value {
  color: var(--primary);
  margin-bottom: 4px;
  font-size: 28px;
  font-weight: 700;
}

.global-stats-label {
  color: var(--muted-foreground);
  font-size: 13px;
}

@media (max-width: 700px) {
  .global-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 400px) {
  .global-stats-grid {
    grid-template-columns: 1fr;
  }
}

.server-detail-graph-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.server-detail-graph-header h3 {
  margin-bottom: 0;
}

.server-compare-select {
  height: 36px;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  cursor: pointer;
  min-width: 180px;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23788798' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-position: right 10px center;
  background-repeat: no-repeat;
  outline: none;
  padding: 0 28px 0 12px;
  font-family: inherit;
  font-size: 13px;
  transition: border-color .2s;
}

.server-compare-select:focus {
  border-color: var(--primary);
}

.server-detail-comparison-stats {
  margin-top: 16px;
}

.comparison-stat {
  border-color: #f59f0a4d;
}

.comparison-stat:hover {
  border-color: #f59f0a80;
}

.comparison-value {
  color: #f59e0b;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--muted-foreground);
}

/*# sourceMappingURL=index.820e3b39.css.map */
