/* Page CSS: public_apply */
.progress-wrap{
  margin:12px 0 18px;
  padding:12px 14px;
  border:1px solid rgba(0,0,0,.12);
  border-radius:14px;
  background:rgba(255,255,255,.65);
}
.progress-head{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:8px;}
.progress-title{font-weight:900;color:var(--primary);}
.progress-pct{font-weight:900;color:var(--primary);}
.progress-bar{height:12px;border-radius:999px;background:rgba(0,0,0,.08);overflow:hidden;border:1px solid rgba(0,0,0,.10);}
.progress-fill{height:100%;border-radius:999px;background:var(--primary);transition:width .25s ease;}
.progress-help{margin-top:8px;font-size:13px;}

/* Checkbox rows (used for "Machines you can operate") */
.check{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border:1px solid rgba(0,0,0,.12);
  border-radius:12px;
  background:#fff;
  font-weight:700;
  cursor:pointer;
}
.check input[type="checkbox"]{
  width:18px;height:18px;
  accent-color:var(--primary);
  cursor:pointer;
}
.check span{font-weight:700}
.field > small.muted{font-size:12px;font-weight:600}

