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

body {
    background: #1a1a1a;
    font-family: 'Courier New', monospace;
    color: #0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.console-container {
    width: 90%;
    max-width: 800px;
    height: 600px;
    background: #000;
    border: 2px solid #0f0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.console-header {
    background: #222;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #0f0;
}

.status-light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red { background: #f00; }
.yellow { background: #ff0; }
.green { background: #0f0; }

.console-header h2 {
    color: #0f0;
    font-size: 16px;
    margin-left: 10px;
}

.console-output {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    white-space: pre-wrap;
    line-height: 1.4;
}

.console-input {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-top: 1px solid #0f0;
    background: #111;
}

.prompt {
    color: #0f0;
    margin-right: 10px;
}

#command-input {
    background: transparent;
    border: none;
    color: #0f0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    outline: none;
    width: 100%;
    caret-color: #0f0;
}

#command-input::placeholder {
    color: rgba(0, 255, 0, 0.5);
}

/* Стили для скроллбара */
.console-output::-webkit-scrollbar {
    width: 6px;
}

.console-output::-webkit-scrollbar-track {
    background: #222;
}

.console-output::-webkit-scrollbar-thumb {
    background: #0f0;
    border-radius: 3px;
}

