body {
  background-color: #000;
  color: #00ff00;
  font-family: "Courier New", monospace;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  /* Loading時のスクロールバーを非表示にするためoverflow設定を削除 */
}

#terminal {
  width: 100vw;
  height: 100vh;
  padding: 20px;
  overflow-y: auto;
  box-sizing: border-box;
}

/* Loading画面を左上配置に変更し、スクロールバーを防ぐ */
#loading-screen {
  position: fixed;
  top: 20px;
  left: 20px;
  width: auto;
  height: auto;
  background-color: #000;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 20px;
  z-index: 1000;
}

.loading-text {
  font-size: 16px;
  /* 点滅アニメーションを削除 */
}

/* Linux風のドットアニメーションを追加 */
#loading-dots {
  animation: loading-dots 1.5s infinite;
}

@keyframes loading-dots {
  0% {
    content: "";
  }
  25% {
    content: ".";
  }
  50% {
    content: "..";
  }
  75% {
    content: "...";
  }
  100% {
    content: "";
  }
}

.url-link {
  color: #4a9eff;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.url-link:hover {
  color: #66b3ff;
  text-shadow: 0 0 5px #4a9eff;
}
