.cmd-container {
    background-color: #0c0c0c;
    color: #cccccc;
    font-family: 'Consolas', 'Lucida Console', monospace;
    font-size: 14px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 4px;
    cursor: text;
}

#cmd-output {
    padding-bottom: 0;
}

.cmd-line {
    white-space: pre-wrap;
    line-height: 1.2;
    min-height: 1.2em;
}

.cmd-input-line {
    display: flex;
    align-items: center;
}

.cmd-prompt {
    margin-right: 8px;
}

#cmd-input {
    background: transparent;
    border: none;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    flex: 1;
    outline: none;
    padding: 0;
    margin: 0;
}

/* Scrollbar styling for CMD */
.cmd-container ::-webkit-scrollbar {
    width: 12px;
}

.cmd-container ::-webkit-scrollbar-track {
    background: #0c0c0c;
}

.cmd-container ::-webkit-scrollbar-thumb {
    background: #333;
    border: 2px solid #0c0c0c;
}

.cmd-container ::-webkit-scrollbar-thumb:hover {
    background: #555;
}