.error-text {
  color: red;
  font-size: 1rem;
  letter-spacing: 0.5em;
  animation: slowBlink 3s ease-in-out infinite;
}

.terminal-status{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.9rem;            /* smaller */
  line-height: 1.35;
  color: #ff3b3b;               /* soft red, tweak if you want */
  background: transparent;
  letter-spacing: 0.02em;
  text-transform: lowercase;    /* matches your vibe */
  user-select: none;
}

.terminal-status .line{
  white-space: pre;             /* keeps spacing if you add it later */
}

@keyframes slowBlink {
  0%   { opacity: 0; }
  50%  { opacity: 1; }
  100% { opacity: 0; }
}
