body {
    background: linear-gradient(to bottom, #000080, #1084d0);
    color: #c0c0c0;
    font-family: 'Courier New', monospace;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dos-window {
    width: 90%;
    max-width: 800px;
    height: 90vh;
    background-color: #000;
    border: 2px solid #c0c0c0;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.title-bar {
    background-color: #00a;
    color: #fff;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title {
    font-weight: bold;
}

.close-button {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.content {
    flex-grow: 1;
    padding: 10px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.dos-link {
    color: #c0c0c0;
    text-decoration: none;
}

.dos-link:hover {
    background-color: #c0c0c0;
    color: #000000;
}

.cursor {
    position: absolute;
    left: 0;
    top: 0;
    animation: blink 1s infinite;
    line-height: 1;
    vertical-align: baseline;
}

@keyframes blink {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

.input-wrapper {
    position: relative;
    display: inline-block;
}

.user-input {
    background-color: transparent;
    border: none;
    outline: none;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    padding: 0;
    margin: 0;
    width: calc(100% - 5ch); /* Adjust based on your prompt length */
    caret-color: transparent;
}

.command-line {
    display: flex;
    align-items: baseline;
}

.exe-output {
    color: #00ff00; /* Bright green color for .exe output */
    margin-top: 5px;
    margin-bottom: 10px;
}
