/* Base styling */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  font-family: "Courier New", Courier, monospace;
  color: #00FF00;
  overflow: hidden;
}

/* Menu Bar Styling */
.menu-bar {
  background-color: #222;
  color: #fff;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.menu-bar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-around;
}

.menu-bar ul li {
  display: inline;
}

.menu-bar ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.menu-bar ul li a:hover {
  background-color: #444;
}

/* Adjust terminal to not overlap the menu */
#terminal {
  margin-top: 50px; /* Account for the height of the menu bar */
  box-sizing: border-box;
  padding: 10px;
  width: 100%;
  height: calc(100% - 50px); /* Adjust terminal height */
  overflow-y: auto;
  background-color: #000;
  color: #00FF00;
  font-family: "Courier New", Courier, monospace;
  white-space: pre-wrap;
}

.input-line {
  display: flex;
  align-items: center;
  margin-bottom: 2px;
}

.input-line:focus-within {
  background-color: rgba(255, 255, 255, 0.1); /* Subtle highlight effect */
}


.prompt {
  margin-right: 5px;
  white-space: pre;
}

input {
  border: none;
  background: transparent;
  color: #00FF00;
  font-family: inherit;
  font-size: 16px;
  outline: none;
  width: 50%;
  min-width: 10px;
}

.output-line {
  margin-bottom: 2px;
}

/* Media query for smaller screens (e.g., phones) */
@media (max-width: 600px) {
  html, body {
    font-size: 18px; /* Larger font size for mobile devices */
  }

  #terminal {
    padding: 15px; /* Add more padding for readability */
  }

  input {
    font-size: 18px; /* Larger input field font */
  }
}

.dir {
  color: cyan;
  font-weight: bold;
}

.text {
  color: lightgray;
}

.link {
  color: #4CAF50;
  text-decoration: underline;
  cursor: pointer;
}

.program {
  color: orange;
  font-weight: bold;
}

.unknown {
  color: red;
}

.grecaptcha-badge { 
  visibility: hidden !important;
}