/* reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* page background */
body {
  background: #0f1117;
  color: #e5e7eb;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* main card */
.panel {
  background: #161a23;
  border-radius: 12px;
  padding: 24px 28px;
  width: 320px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* title */
.panel h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: #7c7cff;
}

/* status rows */
.stat {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #23283b;
}

.stat:last-child {
  border-bottom: none;
}

/* labels */
.label {
  color: #9ca3af;
}

/* values */
.value {
  font-weight: bold;
  color: #22c55e;
}

/* loading state */
.loading {
  color: #facc15;
}
