.aurora-business-health {
  margin: 16px 0;
  padding: 16px;
  border: 1px solid #cfe8df;
  border-radius: 8px;
  background: #fbfffd;
  color: #063f32;
}

.aurora-business-health-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.aurora-business-health-head h2 {
  margin: 0;
  font-size: 18px;
}

.aurora-business-health-head span {
  display: block;
  margin-bottom: 4px;
  color: #087354;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.aurora-business-health-refresh {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #b6ded1;
  border-radius: 8px;
  background: #ffffff;
  color: #087354;
  font-weight: 800;
  cursor: pointer;
}

.aurora-business-health-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.aurora-business-health-grid div {
  min-height: 68px;
  padding: 10px;
  border: 1px solid #e0f1eb;
  border-radius: 8px;
  background: #ffffff;
}

.aurora-business-health-grid span {
  display: block;
  margin-bottom: 6px;
  color: #527166;
  font-size: 12px;
  font-weight: 800;
}

.aurora-business-health-grid strong {
  display: block;
  font-size: 18px;
}

.aurora-business-health-alerts {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.aurora-business-health-alerts li {
  padding: 9px 10px;
  border-radius: 8px;
  background: #eefaf5;
  color: #065f46;
  font-weight: 800;
}

.aurora-business-health-alerts li.warn {
  background: #fff7ed;
  color: #9a3412;
}

.aurora-business-health-alerts li.danger {
  background: #fff1f2;
  color: #be123c;
}

@media (max-width: 900px) {
  .aurora-business-health-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .aurora-business-health-head {
    flex-direction: column;
  }

  .aurora-business-health-grid {
    grid-template-columns: 1fr;
  }
}
