/* Editor component layer: task-first workflow, validation and export confidence UI. */
.popular-task-strip{
  display:flex;
  gap:8px;
  overflow-x:auto;
  padding:2px 2px 10px;
  margin:0 0 8px;
  -webkit-overflow-scrolling:touch;
}

.popular-task-strip a{
  flex:0 0 auto;
  min-height:38px;
  display:inline-flex;
  align-items:center;
  padding:8px 11px;
  border:1px solid var(--editor-line);
  border-radius:999px;
  background:#0b1220;
  color:#e5edf8;
  font-size:.75rem;
  font-weight:900;
  text-decoration:none;
  white-space:nowrap;
}

.popular-task-strip a:hover,
.popular-task-strip a:focus-visible{
  border-color:var(--editor-line-strong);
  background:#10213d;
  outline:none;
}

.validation-card{
  margin:12px 0;
  padding:12px;
  border:1px solid var(--editor-line);
  border-radius:12px;
  background:#0f172a;
}

.validation-card__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}

.validation-card__header strong{
  color:#fff;
  font-size:.9rem;
}

.validation-list{
  display:grid;
  gap:7px;
}

.validation-item{
  display:flex;
  align-items:flex-start;
  gap:8px;
  color:#dbeafe;
  font-size:.8rem;
  line-height:1.35;
}

.validation-dot{
  width:18px;
  height:18px;
  flex:0 0 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-size:.72rem;
  font-weight:900;
  color:#06101f;
}

.validation-item.pass .validation-dot{background:var(--editor-pass)}
.validation-item.warn .validation-dot{background:var(--editor-warn)}
.validation-item.fail .validation-dot{background:var(--editor-fail);color:#fff}

.workflow-next-step{
  margin-top:8px;
  color:#dbeafe;
  font-weight:800;
}

.thumb-page-badge{
  position:absolute;
  top:4px;
  right:4px;
  min-width:18px;
  height:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:#60a5fa;
  color:#06101f;
  font-size:.62rem;
  font-weight:950;
  border:1px solid rgba(255,255,255,.55);
}

.thumb-item:not(.active) .thumb-page-badge{
  background:#334155;
  color:#cbd5e1;
}

.export-confidence-card{
  border-color:rgba(34,197,94,.24)!important;
  background:rgba(20,83,45,.18)!important;
  color:#dcfce7!important;
}

.export-confidence-card.warn{
  border-color:rgba(245,158,11,.30)!important;
  background:rgba(120,53,15,.18)!important;
  color:#fef3c7!important;
}

.completion-summary{
  font-weight:800;
}
