/* Terminal */
.terminal {
  background-color: rgba(0, 0, 0, 0.8);
  border: 2px solid #ff0000;
  box-shadow: 0 0 10px #ff0000;
  border-radius: 5px;
  width: 90%;
  max-width: 1000px;
  padding: 1.5rem;
  margin: 4rem 0;
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  z-index: 1000; /* Damit das Terminal über anderen Elementen liegt */
}

.terminal-header {
  color: #ff0000;
  margin-top: 1rem;
  text-shadow: 0 0 5px #ff0000;
  cursor: move; /* Ermöglicht das Ziehen */
  display: flex;
  align-items: center;
  font-family: 'Consolas', monospace;
  font-size: 1rem;
}

.terminal-input {
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: 'Consolas', monospace;
  font-size: 1rem;
  outline: none;
  min-width: 200px;
  flex: 1;
}



#terminal-output {
  font-family: 'Consolas', monospace;
  line-height: 1.4;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

#terminal-output::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

#terminal-output div {
  margin-bottom: 5px;
}
