body {
    margin: 0;
    font-family: monospace;
    background-color: #000;
    color: #f0f0f0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cli-container {
    background-color: #000;
    width: 95%;
    height: 95%;
    display: flex;
    flex-direction: column;
    border: 2px solid #333;
}

.cli-header {
    background-color: #222;
    color: #f0f0f0;
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #333;
}

.cli-body {
    padding: 20px;
    flex-grow: 1;
    overflow-y: auto;
}

.prompt {
    white-space: nowrap;
    display: inline-block;
}

#commandInput {
    background: transparent;
    border: none;
    color: #f0f0f0;
    font-family: monospace;
    outline: none;
    width: calc(100% - 250px);
    display: inline-block;
    margin-left: 5px;
}

.cursor {
    background-color: #f0f0f0;
    color: #000;
    animation: blink-cursor 0.75s step-end infinite;
    display: inline-block;
    width: 10px;
    margin-left: 2px;
}

@keyframes blink-cursor {
    from, to { background-color: transparent; }
    50% { background-color: #f0f0f0; color: #000; }
}

.output {
    margin-top: 0;
}

.output ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.output li {
    margin-bottom: 8px;
}

.input-area {
    display: flex;
    align-items: center;
}

#switchToGUI {
    background-color: #333;
    color: #f0f0f0;
    border: none;
    padding: 10px 20px;
    font-family: monospace;
    cursor: pointer;
    margin-top: 20px;
    align-self: center; /* Center the button within its container */
}

#switchToGUI:hover {
    background-color: #555;
}

#switchToGUI a {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
    text-align: center; /* Center the text within the link (and button) */
}

#switchToGUI a:hover {
    text-decoration: none;
}