.setup-card {
  border: 2px solid #d9e5fb;
  box-shadow: 0 12px 30px rgba(36,63,144,.07);
  padding: 18px;
}
.setup-card[hidden],
html[data-garmin-ready="true"] #setupSection {
  display: none !important;
}
html[data-garmin-ready="true"] #connectionBadge {
  margin-bottom: 10px;
  padding: 6px 10px;
  font-size: 11px;
}
.setup-card h2 { margin-bottom: 6px; }
.setup-intro { color: var(--muted); font-size: 13px; margin: 0 0 14px; }
.setup-list { display: grid; gap: 10px; }
.setup-row {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid #d9e5fb;
  border-radius: 16px;
  background: #ffffff;
}
.setup-label { display: flex; align-items: center; gap: 10px; min-width: 0; }
.setup-number {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: white;
  font-weight: 900;
}
.setup-label strong { display: block; color: var(--primary-dark); font-size: 14px; }
.setup-label small { display: block; color: var(--muted); font-size: 10px; margin-top: 2px; }
.setup-status {
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}
.setup-status.ready { background: var(--primary-soft); color: var(--primary); border: 1px solid #cbdaf7; }
.setup-status.pending { background: var(--accent-soft); color: var(--accent-dark); border: 1px solid #ffd6bd; }
.setup-status.waiting { background: #ffffff; color: var(--primary); border: 1px solid #d9e5fb; }
.setup-action {
  border: 0;
  border-radius: 12px;
  min-height: 38px;
  padding: 0 12px;
  background: var(--accent);
  color: white;
  font-weight: 900;
  font-size: 11px;
  white-space: nowrap;
}
.setup-action:disabled { background: var(--primary-soft); color: #7890c2; opacity: 1; }
.setup-message {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 11px;
  line-height: 1.45;
}
@media (max-width: 560px) {
  .setup-row { grid-template-columns: minmax(0,1fr) auto; }
  .setup-action { grid-column: 1 / -1; width: 100%; min-height: 44px; }
}
