/* public/style.css */
body {
  background-color: #000;
  color: #f00;
  font-family: 'Courier New', monospace;
  margin: 0;
  padding: 20px;
  font-size: 16px;
  line-height: 1.4;
  overflow-x: auto;
}

.console {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.prompt {
  color: #0f0;
}

.command {
  color: #fff;
}

.output {
  color: #aaa;
  margin-bottom: 1px;
}

.input-line {
  display: flex;
  align-items: center;
  margin-top: 2px; /* Было 2px */
}

#command-input {
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Courier New', monospace;
  font-size: 16px;
  outline: none;
  flex-grow: 1;
  margin-left: 5px;
}

.history {
  margin-bottom: 2px; /* Было 2px */
}

.command-line {
  display: block;
}

.info-message {
  color: #ff0;
  margin-bottom: 10px;
}

.redirect-message {
  color: #0ff;
}

.contact-info {
  color: #0ff;
  margin: 5px 0;
}

.warning {
  color: #ff4500;
  font-weight: bold;
}

.ip-address {
  color: #00ff00;
  font-weight: bold;
}

.counter {
  color: #ff69b4;
  font-weight: bold;
}