/* Setup wizard shell */
body.gig-install {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(155deg, #061828 0%, #0a2540 40%, #0b3d91 75%, #0d6e6c 100%);
  color: #1a1d21;
}

.gig-install-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.gig-install-card {
  width: 100%;
  max-width: 720px;
  border: none;
  border-radius: 0.85rem;
  overflow: hidden;
}

.gig-install-header {
  background: linear-gradient(90deg, #0a2540, #0b3d91);
  padding: 1.15rem 1.5rem;
}

.gig-install-logo {
  border-radius: 10px;
  background: #fff;
  padding: 4px;
}

.gig-install-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.75rem 1rem;
  background: #f0f3f8;
  border-bottom: 1px solid #dee2e6;
}

.gig-install-step {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: #6c757d;
  padding: 0.25rem 0.45rem;
  border-radius: 999px;
}

.gig-install-step .num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ced4da;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.7rem;
}

.gig-install-step.active {
  background: #fff;
  color: #0b3d91;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
}

.gig-install-step.active .num {
  background: #0b3d91;
}

.gig-install-step.done .num {
  background: #198754;
}
