.console-content {
    display: flex; /* Enables horizontal layout */
    height: 100%; /* Ensures the container takes up the full height */
    align-items: stretch; /* Aligns content to the top */
    position: relative;
    margin-top: -25px; /* Removes unnecessary negative margin */
    margin-bottom: 0; /* Removes unnecessary negative margin */
}
  
.content-left {
    width: 20%; /* Left section takes up 20% of the width */
    padding: 10px;
    display: flex;
    flex-direction: column; /* Stacks buttons vertically */
    gap: 10px; /* Adds spacing between buttons */
    background-color: black; /* Optional: Background color for the left section */
    color: #00ff00; /* Optional: Text color */
}
  
.console-inner-border {
    width: 2px; /* Thickness of the vertical border */
    background-color: #00ff00; /* Color of the border */
}
  
.content-right {
    width: 78%; /* Right section takes up the remaining width (100% - 20% - 2% for the border) */
    padding: 10px;
    word-wrap: break-word; /* Ensures long words break into the next line */
    white-space: normal; /* Allows text to wrap to the next line */
    overflow: hidden; /* Hides any overflowing content */
    background-color: black; /* Optional: Background color for the right section */
    color: #00ff00; /* Optional: Text color */
    box-sizing: border-box; /* Ensures padding is included in the width */
    margin-top: 0; /* Removes unnecessary negative margin */
    display: flex; /* Enables flexbox for alignment */
    flex-direction: column; /* Stacks content vertically */
    justify-content: flex-start; /* Aligns content to the top */
}
  
  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 */
  }

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