body {
  background: #0f172a;
  color: white;
  font-family: Arial, sans-serif;
  padding: 30px;
}

h1 {
  margin-bottom: 20px;
}

.card {
  background: #111827;
  padding: 20px;
  border-radius: 18px;
  margin-bottom: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

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

.item {
  margin-bottom: 0;
}

.label {
  color: #94a3b8;
  font-size: 13px;
}

.value {
  font-size: 30px;
  font-weight: bold;
  margin-top: 8px;
}

.success {
  color: #22c55e;
}

.failed {
  color: #ef4444;
}

.started {
  color: #38bdf8;
}

.unknown {
  color: #cbd5e1;
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

button {
  background: #2563eb;
  color: white;
  border: 1px solid #334155;
  border-radius: 10px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background: #1d4ed8;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid #334155;
  text-align: left;
  vertical-align: top;
}

th {
  color: #cbd5e1;
}

code {
  background: #020617;
  color: #facc15;
  padding: 4px 7px;
  border-radius: 8px;
}

.badge {
  display: inline-block;
  background: #020617;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: bold;
}

a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

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

  table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 600px) {
  body {
    padding: 16px;
  }

  .summary-grid {
    grid-template-columns: 1fr;
  }
}
