/* ✅ Placeholder mobile styles — adjust later */
body {
  background: #f1f5f9;
}

/* ✅ Universal tool status box styling */
.credit-box {
  min-width: 260px;
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  flex: 1 1 auto;
}

/* ✅ Flex grid wrapper for tool header status boxes */
.status-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 24px;
}

/* ✅ Section wrapper for center layout */
.section-wrapper {
  max-width: 760px;
  margin: auto;
  margin-top: 30px;
  padding: 0 16px;
}
