body {
  background-color: black;
  color: #00ff00;
  font-family: "Courier New", Courier, monospace;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.console {
  width: 80%;
  max-width: 1200px;
  border: 2px solid #00ff00;
  padding: 20px;
  box-shadow: 0 0 10px #00ff00;
  position: relative; /* Ensures child elements can be positioned relative to this container */
}

.console-footer {
  margin-top: 80px;
  border-top: 1px solid #00ff00;
  padding-top: 10px;
  text-align: center;
  font-size: 0.8rem;
  color: #00ff00;
}

.corporationadvice {
  font-style: italic;
  font-size: small;
}

p {
  margin: 5px 0;
}

form {
  display: flex;
  align-items: center;
}

input[type="text"] {
  background-color: black;
  color: #00ff00;
  border: none;
  border-bottom: 1px solid #00ff00;
  font-family: "Courier New", Courier, monospace;
  font-size: 1rem;
  outline: none;
  width: 20%;
}

#output {
  margin-top: 20px;
  white-space: pre-wrap;
}

.console-inner-border {
  width: 2px; /* Thickness of the vertical border */
  background-color: #00ff00; /* Color of the border */
  height: auto; /* Full height of the container */
}

.pretag {
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0;
}

#loading {
  position: absolute; /* Positions the loading div relative to the .console container */
  top: 10px; /* Adjusts the distance from the top of the .console */
  left: 97%; /* Centers the loading div horizontally */
  transform: translateX(-50%); /* Ensures perfect horizontal centering */
  display: none; /* Keeps it hidden until needed */
  font-family: monospace;
  font-size: 1.5rem;
  color: #00ff00;
}

.txt-rotate {
  font-family: monospace;
  font-size: 1.5rem;
  color: #00ff00;
}

.main-header {
  margin-bottom: 0px;
  padding-bottom: 25px;
  font-size: 2rem;
  text-align: center;
  color: #00ff00;
  font-style: bold;
  text-shadow: 0 0 2px #00ff00;
}

.header-container {
  display: flex; /* Enables horizontal layout */
  align-items: center; /* Vertically aligns items */
  justify-content: space-between; /* Adds space between the logo and header */
  gap: 10px; /* Optional: Adds spacing between the elements */
}

.header-container my-logo {
  flex-shrink: 0; /* Prevents the logo from shrinking */
}

.header-container main-header {
  flex-grow: 1; /* Allows the header to take up remaining space */
  text-align: left; /* Aligns the header text to the left */
}


.bottom-border {
  border-bottom: 1px solid #00ff00; /* Defines the bottom border */
  padding-bottom: 00px; /* Adds spacing below the border */
  margin-bottom: 50px; /* Adds spacing after the border */
}

.button-back {
  position: relative; /* Keeps it positioned within the flow of the header-container */
  margin-top: 10px; /* Adds spacing between the header and the button */
}

.button-back .button {
  display: inline-block; /* Ensures the link behaves like a button */
  padding: 10px 20px; /* Adds padding inside the button */
  color: #00ff00; /* Text color */
  text-decoration: none; /* Removes underline */
  font-size: 1rem; /* Adjusts font size */
  background-color: black; /* Button background color */
}

button.load-html-button {
  padding: 10px 20px; /* Adds padding inside the button */
  color: #00ff00; /* Text color */
  background-color: black; /* Button background color */
  border: 1px solid #00ff00; /* Adds a border to the button */
  border-radius: 5px; /* Optional: Adds rounded corners */
  text-align: center;
  cursor: pointer;
}

button.load-html-button:hover {
  background-color: #00ff00; /* Changes background on hover */
  color: black; /* Changes text color on hover */
}