.log-box,
.output-box {
  height: 46em;
  max-height: 46em;
  font-family: "Cascadia Mono", Consolas, monospace;
  font-size: 13px;
  line-height: 1.45;
}

.log-box {
  background: #111a16;
  color: #ecf7ef;
}

.output-box {
  border: 1px solid var(--border);
  background: #fbfcfa;
  color: var(--text);
}

.log-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.button-small {
  min-height: 30px;
  padding: 6px 10px;
  font-size: 13px;
}

.job-activity {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px 14px;
  align-items: center;
  border: 1px solid #cfe7db;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 14px 16px;
  background: #edf8f2;
}

.job-activity.is-hidden {
  display: none;
}

.activity-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #116b4f, #b7df68);
  box-shadow: 0 0 0 4px rgba(17, 107, 79, 0.12);
}

.activity-copy {
  display: grid;
  gap: 2px;
}

.activity-copy span {
  color: var(--muted);
}

.activity-progress {
  grid-column: 1 / -1;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #d5eadf;
}

.activity-progress span {
  display: block;
  width: 35%;
  height: 100%;
  border-radius: inherit;
  background: #116b4f;
  animation: activity-progress 1.4s ease-in-out infinite;
}

@keyframes activity-progress {
  0% {
    transform: translateX(-120%);
  }
  50% {
    transform: translateX(95%);
  }
  100% {
    transform: translateX(320%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .activity-progress span {
    animation: none;
    width: 100%;
  }
}
