#Run-information {
  background: #0f172a;
  border-radius: 10px;
  padding: 12px 14px;
  height: 260px;
  overflow-y: auto;
  font-family: Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.5;
  border: 1px solid #1e293b;
  scroll-behavior: smooth;
}

#Run-information .log-line {
  color: #e2e8f0;
  padding: 3px 0;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 滑入 + 打字机 二合一 */
#Run-information .log-line.new {
  animation: logSlideIn 0.1s ease-out forwards,
             typewriter 0.5s steps(40, end) forwards;
}

@keyframes logSlideIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 🔥 醒目高亮：亮青色 → 科技蓝，超酷 */
@keyframes typewriter {
  from { width: 0; color: #ff3366; }  /* 亮红 */
  to   { width: 100%; color: #ef4444; }  /* 柔和红 */
}

#Run-information .log-line.info  { color: #a5f3fc; }
#Run-information .log-line.system{ color: #fdba74; }
#Run-information .log-line.error { color: #fca5a5; }

#Run-information::-webkit-scrollbar { width: 6px; }
#Run-information::-webkit-scrollbar-thumb {
  background: #475569;
  border-radius: 3px;
}