*{box-sizing:border-box}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto;
  background:#F2F2F7;
}

.container{
  max-width:720px;
  margin:auto;
  padding:16px;
}

.top-bar{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:16px;
}

.back-btn{
  width:36px;
  height:36px;
  border-radius:50%;
  border:none;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 10px rgba(0,0,0,.08);
  cursor:pointer;
}

.back-btn:active{
  transform:scale(0.92);
}

.back-btn svg{
  width:18px;
  height:18px;
}

.title{
  font-size:20px;
  font-weight:700;
}

.anggota-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}

.anggota-card{
  background:#fff;
  border-radius:18px;
  padding:14px;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
  border:1px solid rgba(0,0,0,.04);
}

.anggota-nama{
  font-size:14px;
  font-weight:600;
  margin-bottom:8px;
}

.progress{
  width:100%;
  height:6px;
  background:#E5E7EB;
  border-radius:6px;
  overflow:hidden;
}

.progress-bar{
  height:100%;
  border-radius:6px;
}

.anggota-nominal{
  font-size:12px;
  opacity:.6;
  margin-top:6px;
}