/* Das CMD Fenster Container */
.cmd-container {
    background-color: #c0c0c0;
    border: 2px solid black;
    width: 300px;
    max-width: 90%;
    position: fixed;
    bottom: 20px;
    right: 20px;
    box-shadow: 3px 3px 0 #808080;
    font-family: 'MS Sans Serif', sans-serif;
    z-index: 9999;
    cursor: move;
}

/* Titel-Leiste */
.cmd-title-bar {
    background-color: #000080;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 5px;
    font-size: 14px;
}

.cmd-title {
    font-weight: bold;
}

.cmd-buttons {
    display: flex;
    gap: 5px;
}

.cmd-maximize-btn,
.cmd-close-btn {
    background-color: #c0c0c0;
    color: black;
    padding: 0 5px;
    cursor: pointer;
    border: 1px solid black;
    font-weight: bold;
}

/* Das innere des CMD Fensters */
.cmd-body {
    background-color: black;
    color: #00ff00;
    padding: 10px;
	font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    line-height: 1.5;
}

/* CMD-ähnlicher Text-Cursor */
#input {
    font-weight: bold;
}

/* Stil für den Nachrichtentext */
#message {
    margin-top: 10px;
}
/* Verstecktes Eingabefeld */
#hiddenInput {
    position: absolute;
    top: -9999px;
}
.d-none {
            display: none;
        }