.console-content {
    display: flex; /* Enables horizontal layout */
    justify-content: space-between; /* Adds space between left and right content */
    align-items: stretch; /* Ensures both sections stretch to the same height */
    position: relative;
}

.content-left,
.content-right {
    flex: 1; /* Ensures both sections take up equal space */
    padding: 10px;
    position: relative; /* Allows for absolute positioning of inner elements */
}

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

.consolebutton {
    width: 90%; /* Set the width to almost half of the parent container */
    max-width: 500px; /* Optional: Limit the maximum width */
    margin: 0 auto; /* Center the button horizontally */
    padding: 5px; /* Add padding inside the button */
    text-align: center; /* Center the text inside the button */
}

.consolebutton a.button {
    display: inline-block; /* Ensures the link behaves like a button */
    padding: 10px 20px; /* Add padding inside the button */
    color: #00ff00; /* Text color */
    text-decoration: none; /* Remove underline */
    font-size: 1.2rem; /* Adjust font size */
    border: 1px solid #00ff00; /* Add a border to the button */
    border-radius: 5px; /* Optional: Add rounded corners */
    box-shadow: 0 0 5px #00ff00; /* Add a glowing effect */
    background-color: black; /* Button background color */
}