/* Styles for the main page content */
body {
    font-family: sans-serif;
    margin: 0;
    //padding: 20px;
    //background-color: #f0f0f0;
}

.content {
    text-align: center;
}

/* Styles for the overlay itself */
.overlay {
    position: fixed; /* Sit on top of the page content */
    display: none;   /* Hidden by default */
    width: 100%;     /* Full width (cover the whole page) */
    height: 100%;    /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1); /* Dark background with opacity */
    z-index: 10;     /* Specify a stack order higher than other elements */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Styles for the command prompt box */
.prompt-box {
    //background-color: #000;
    color: #fff;
    width: 600px;
    max-width: 90%;
    border: 0px solid #555;
    box-shadow: 0 0 0px rgba(0, 255, 0, 0.3);
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    display: flex;
    flex-direction: column;
}

.prompt-header {
    //background-color: #333;
    //padding: 5px 10px;
    //display: flex;
    //justify-content: space-between;
    //cursor: move; /* Optional: suggests it can be moved if you add that JS functionality */
}

.close-btn {
    cursor: pointer;
    font-weight: bold;
}

.prompt-body {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto; /* Adds scrolling for long output */
}

.prompt-input-line {
    display: flex;
    gap: 0px;
}

.prompt-path {
    //color: #eee;
}

#cmdInput {
    background-color: transparent;
    border: none;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    flex-grow: 0;
    outline: none; /* Remove default focus outline */
}