/* Basic reset */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', Arial, sans-serif;
  background: #f6f7fb;
  color: #1f2937;
}

.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}

.header {
  text-align: left;
  margin: 8px 0 16px;
}

h1 {
  font-size: 24px;
  margin: 0 0 4px;
}

.subtitle {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
}

.card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.props {
  list-style: none;
  padding: 0;
  margin: 16px 0 8px;
}

.props li {
  display: grid;
  grid-template-columns: 24px 160px 1fr;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px dashed #e5e7eb;
}

.props li:last-child { border-bottom: 0; }

.dot { width: 24px; display: inline-flex; align-items: center; justify-content: center; }
.status-active {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 999px;
  background: #10b981;
  margin: 7px 7px 0 7px;
}

.label { color: #6b7280; }
.value { font-weight: 500; }

.warn {
  margin: 16px 0 8px;
  padding: 12px 14px;
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid #fed7aa;
  border-radius: 8px;
}

.recommend {
  margin: 8px 0 12px;
}

.recommend ul { margin: 8px 0 0 18px; }

.actions { display: flex; justify-content: center; padding-top: 8px; }

.button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  background: #2563eb;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(37,99,235,0.35);
  transition: transform .06s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover { background: #1d4ed8; box-shadow: 0 6px 18px rgba(29,78,216,0.40); }
.button:active { transform: translateY(1px); }

.footer { text-align: center; margin-top: 18px; }
.muted { color: #9ca3af; font-size: 12px; }

@media (max-width: 520px) {
  .props li { grid-template-columns: 20px 130px 1fr; }
}


