body {
    background-color: #121212;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

.window-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 4px 8px;
    -webkit-app-region: drag;
    display: flex;
    align-items: center;
    background-color: #181818;
    border-bottom: 2px solid #333;
}

.window-top p {
    font-size: larger;
    font-weight: bolder;
    margin-left: 16px;
}

.window-top button {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: none;
    -webkit-app-region: no-drag;
    cursor: pointer;
    margin-right: 8px;
    box-shadow: 0 1px 2px #0002;
    transition: filter 0.15s;
}

.close-btn {
    margin-left: 16px;
    background: #ff5f56;
}

.minimize-btn {
    background: #ffbd2e;
}

.expand-btn {
    background: #27c93f;
}

.window-top button:hover {
    filter: brightness(1.15) drop-shadow(0 0 2px #fff6);
    scale: 1.1;
}

.terminal {
    padding-left: 12px;
    font-size: 16px;
    line-height: 1.5;
    white-space: pre-wrap;
}

.help-text {
    display: flex;
    color: #ccc;
    margin: 4px 0 -50px;
    font-family: monospace;
}

.input-line {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.input-line {
  margin-top: 6px;
}

.input-line:first-child {
  margin-top: 0;
}

.prompt {
    color: white;
    white-space: nowrap;
    margin-top: 4px;
    font-family: monospace;
}

.command {
    font-family: monospace;
    font-size: 16px;
    outline: none;
    margin-top: 4px;
    width: 100%;
    white-space: pre-wrap;
    line-height: 1.5;
    cursor: text;
}

pre {
    color: #cccccc;
    margin: 0;
    padding: 0;
    line-height: 1.3;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #121212;
    border-radius: 8px;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: #888;
}