* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #0c0c0c;
    color: #cccccc;
    font-family: 'Cascadia Code', 'Fira Code', 'Courier New', monospace;
    font-size: 16px;
    line-height: 1.5;
    padding: 20px;
}

/* Obere Leiste für Buttons */
.top-bar {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.btn {
    background: #1e1e1e;
    color: #4af626;
    border: 1px solid #4af626;
    padding: 8px 15px;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    border-radius: 4px;
    margin-left: 10px;
}

.btn:hover {
    background: #4af626;
    color: #0c0c0c;
}

/* Terminal Fenster */
#terminal-container {
    max-width: 900px;
    margin: 60px auto 0;
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    overflow: hidden;
    border: 1px solid #333;
}

#terminal-header {
    background-color: #2d2d2d;
    padding: 10px 15px;
    display: flex;
    align-items: center;
}

.dot {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}
.red { background-color: #ff5f56; }
.yellow { background-color: #ffbd2e; }
.green { background-color: #27c93f; }

.title {
    color: #888;
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;
}

#terminal-body {
    padding: 20px;
    height: 65vh;
    overflow-y: auto;
}

#output p {
    margin-bottom: 5px;
    word-wrap: break-word;
}

.cmd { color: #4af626; font-weight: bold; }
.error { color: #ff5f56; }
.highlight { color: #57b5f9; }

/* Eingabezeile */
.input-line {
    display: flex;
    align-items: center;
}

.prompt {
    color: #4af626;
    margin-right: 10px;
    white-space: nowrap;
}

#cmd-input {
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: inherit;
    font-size: inherit;
    width: 100%;
    outline: none;
}

/* Hilfsklasse für GUI-Wechsel */
.hidden { display: none !important; }