/* App CSS base (Bootstrap 5 + ajustes) */

:root{
  --brand: #0d6efd;
  --bg-soft: #f6f8fb;
}

body{
  background: var(--bg-soft);
}

.brand-mark{
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: var(--brand);
  display:inline-block;
}

.hero{
  background: linear-gradient(180deg, rgba(13,110,253,0.10), rgba(255,255,255,0));
  border: 1px solid rgba(13,110,253,0.15);
}

.app-main{
  min-height: calc(100vh - 120px);
}

/* Wizard */
.wizard-steps{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.wizard-step{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
}

.wizard-badge{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 600;
  border: 1px solid rgba(0,0,0,.12);
  background: #f8f9fa;
}

.wizard-label{
  font-size: .9rem;
  color: #6c757d;
  font-weight: 600;
}

.wizard-step.active{
  border-color: rgba(13,110,253,.35);
  box-shadow: 0 0 0 .15rem rgba(13,110,253,.10);
}
.wizard-step.active .wizard-badge{
  background: rgba(13,110,253,.12);
  border-color: rgba(13,110,253,.35);
}
.wizard-step.active .wizard-label{
  color: #212529;
}

.wizard-step.done{
  opacity: .85;
}
.wizard-step.done .wizard-badge{
  background: rgba(25,135,84,.12);
  border-color: rgba(25,135,84,.25);
}

/* Admin shell */
.admin-body{
  background: #f6f8fb;
}
.admin-shell{
  display:flex;
  min-height: 100vh;
}
.admin-sidebar{
  width: 280px;
  display:flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
}
.admin-content{
  flex:1;
  min-width: 0;
}
.admin-topbar{
  position: sticky;
  top: 0;
  z-index: 1020;
}
.avatar-circle{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(13,110,253,.15);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: .85rem;
  font-weight: 700;
  color: #0d6efd;
}

/* Responsive admin sidebar toggle */
@media (max-width: 991.98px){
  .admin-sidebar{
    position: fixed;
    left: -300px;
    transition: left .2s ease-in-out;
    z-index: 1050;
    box-shadow: 0 1rem 3rem rgba(0,0,0,.2);
  }
  .admin-sidebar.is-open{
    left: 0;
  }
}
