body, html {
    height: 100%;
    margin: 0;
    overflow: hidden; /* Prevent scroll bars */
    background-color: #012456; /* PowerShell blue background */
    font-family: 'Consolas', 'Courier New', monospace;
    color: white;
}

#title-bar {
    position: fixed; /* Fixed position so it doesn't move */
    top: 0; /* Align to the top */
    left: 0; /* Align to the left */
    right: 0; /* Stretch to the right */
    height: 30px; /* Fixed height */
    background-color: #2d2d2d;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
    z-index: 10; /* Ensure it's above the console */
}

#title {
    user-select: none;
}

#window-controls {
    display: flex;
    gap: 5px;
}

.ascii-art {
    font-family: 'Courier New', monospace;
    font-size: 8px; /* Adjust as needed */
    white-space: pre-wrap; /* Allow wrapping */
    word-break: break-all; /* Break onto the next line to prevent overflow */
    overflow: hidden; /* Hide overflow */
}


.window-control {
    background: #2d2d2d; /* Match the title bar background */
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
    padding: 0 10px;
    height: 30px; /* Match the title bar height */
    line-height: 30px; /* Center text vertically */
}

#console {
    width: 80%;
    height: 90%;
    position: absolute; /* Use absolute positioning */
    top: 30px; /* Push down by the height of the title bar */
    left: 10%; /* Center it */
    background-color: #012456; /* PowerShell blue background */
    padding: 20px;
    box-sizing: border-box;
    white-space: pre-wrap;
    overflow: hidden;
    color: #cccccc; /* Default PowerShell text color */
}

/* CSS for the PowerShell command prompt */
.prompt-text {
    color: #ffffff; /* White color for the command prompt */
}

/* CSS for the Get-Item part of the command */
.command-part.yellow {
    color: #f9f1a5; /* Yellow color for 'Get-Item' */
}

/* CSS for the username part of the command */
.command-part.teal {
    color: #4ec9b0; /* Teal color for 'Garan Thomas' */
}

/* CSS for the -Profile part of the command */
.command-part.grey {
    color: #cccccc; /* Grey color for '-Profile' */
}

/* CSS for the output text */
.output-text {
    color: #ffffff; /* White color for the output text */
}

/* Style for the 'question' part of the output */
.output-label {
    color: #9CDCFE; /* Light blue color for questions */
}

/* Style for the 'answer' part of the output */
.output-value {
    color: #CE9178; /* Light coral color for answers */
}

/* Style for clickable links */
.output-link {
    color: #569cd6; /* Same as PowerShell hyperlink color */
    text-decoration: none; /* Optional: remove underline from links */
}

.output-link:hover {
    text-decoration: underline; /* Optional: underline on hover */
}



/* Additional styles for the console and title bar can remain unchanged */


.command-part {
    /* Additional classes for different parts of the command */
    color: #569cd6; /* Default color if none of the below classes are used */
}

.command-part.get-item {
    color: #f9f1a5; /* Yellow color for 'Get-Item' */
}

.command-part.profile {
    color: #cccccc; /* Grey color for '-Profile' */
}

.command-part.username {
    color: #4ec9b0; /* Teal/Green color for the username */
}

.output-text {
    color: white; /* Default text color for output */
}
