:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #152033;
  background: #f4f7fb;
}

body {
  margin: 0;
}

button,
input {
  font: inherit;
}

button {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  padding: 0 16px;
  color: white;
  background: #1267d8;
  cursor: pointer;
}

button.secondary {
  color: #152033;
  background: #e3eaf5;
}

input {
  min-height: 40px;
  border: 1px solid #c8d3e2;
  border-radius: 6px;
  padding: 0 12px;
}

.shell {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.nav-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.view h1 {
  margin: 0 0 12px;
  font-size: 36px;
}

.view p {
  margin: 0 0 24px;
  color: #55657a;
}

.hidden {
  display: none;
}

.panel,
.item {
  max-width: 520px;
  border: 1px solid #dce4ef;
  border-radius: 8px;
  padding: 18px;
  margin-bottom: 14px;
  background: white;
}

.panel {
  display: grid;
  gap: 10px;
}

.list {
  display: grid;
  gap: 12px;
}

.item {
  max-width: none;
}

.item h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
  color: #55657a;
}

.status {
  min-height: 24px;
  color: #1267d8;
}
