.actions-hud {
  /* Container lives inside a dismissable HUD card in the top-right stack. */
  user-select: none;
}

.actions-loop {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0 8px;
  font-size: 12px;
  opacity: 0.88;
  user-select: none;
}
.actions-loop input {
  width: 14px;
  height: 14px;
  margin: 0;
}
.actions-loop span {
  white-space: nowrap;
}

.actions-sub {
  font-size: 12px;
  opacity: 0.92;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.actions-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
}

.actions-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(90,220,140,0.95), rgba(120,180,255,0.95));
}

.actions-meta {
  margin-top: 8px;
  font-size: 12px;
  opacity: 0.72;
}

.actions-meta-list {
  display: grid;
  gap: 6px;
}

.actions-meta-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.actions-meta-k {
  opacity: 0.80;
  font-size: 12px;
}

.actions-meta-v {
  color: #eef2ff;
  font-variant-ligatures: none;
  white-space: nowrap;
  text-align: right;
}

.actions-hint {
  margin-top: 8px;
  font-size: 12px;
  opacity: 0.65;
}


