:root {
  color-scheme: light;
}

#setup-wizard {
  min-height: 82vh;
}

.setup-hero {
  background: linear-gradient(135deg, #0d6efd 0%, #4f8bff 55%, #7aa5ff 100%);
}

.setup-hero-panel {
  min-height: 240px;
}

.setup-hero-info {
  min-height: 240px;
}

.setup-hero-stat {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16);
}

.setup-steps {
  display: grid;
  gap: .8rem;
}

.step-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .8rem;
  align-items: center;
  padding: 1rem 1rem;
  border-radius: 1rem;
  border: 1px solid #e9ecef;
  background: #fff;
  color: #212529;
  transition: all .2s ease-in-out;
  cursor: pointer;
}

.step-item:hover {
  transform: translateY(-1px);
  border-color: #0d6efd;
  box-shadow: 0 8px 20px rgba(13,110,253,.08);
}

.step-item.active {
  border-color: #0d6efd;
  background: #e9f1ff;
  font-weight: 700;
}

.step-item.completed {
  border-color: #198754;
  background: #e9f7ef;
}

.step-item .step-marker {
  min-width: 2.75rem;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f1f5f9;
  color: #0d6efd;
  font-size: 1rem;
}

.step-item.completed .step-marker {
  background: #d1efd9;
  color: #198754;
}

.step-item span {
  display: block;
}

.setup-sidebar-card, .setup-step-card {
  min-height: 520px;
}

.setup-step-card {
  background: #ffffff;
}

@media (max-width: 1199.98px) {
  .setup-sidebar-card,
  .setup-step-card {
    min-height: auto;
  }
}

.progress-sm {
  height: 10px;
  border-radius: 999px;
}

.setup-hero .badge {
  font-size: .8rem;
}

.setup-hero-info {
  border-radius: 0 0.8rem 0.8rem 0;
}

.setup-hero-panel {
  border-radius: 0.8rem 0 0 0.8rem;
}

@media (max-width: 767.98px) {
  .setup-hero-panel,
  .setup-hero-info {
    border-radius: 0.8rem;
  }
}
