.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}
.status-item {
  padding: 18px;
  border-radius: 12px;
  background: #f4f7fb;
}
.status-item strong {
  display: block;
  margin-top: 5px;
  font-size: 25px;
}
.status-good { color: #067647; }
.status-warn { color: #b54708; }
fieldset {
  display: grid;
  gap: 8px;
  border: 1px solid #d5dce5;
  border-radius: 10px;
  padding: 12px;
}
legend {
  font-size: 13px;
  font-weight: 700;
}
.check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.check-label input { width: auto; }
.status-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.status-badge.active {
  background: #e7f8ee;
  color: #067647;
}
.status-badge.inactive {
  background: #f1f2f4;
  color: #667085;
}
.status-badge.warning {
  background: #fff4e5;
  color: #b54708;
}
.status-badge.danger {
  background: #fff0f0;
  color: #b42318;
}
