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

body {
    font-family: 'Courier New', monospace;
    background: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

.terminal-container {
    width: 100vw;
    height: 100vh;
    background: #1e1e1e;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.terminal-header {
    background: #323232;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #444;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
    margin-right: 15px;
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-button.close {
    background: #ff5f56;
}

.terminal-button.minimize {
    background: #ffbd2e;
}

.terminal-button.maximize {
    background: #27c93f;
}

.terminal-title {
    color: #a0a0a0;
    font-size: 13px;
}

.terminal-body {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
    background: #1e1e1e;
}

#output {
    color: #00ff00;
    margin-bottom: 10px;
    white-space: pre-wrap;
    word-wrap: break-word;
}

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

.prompt {
    color: #00ff00;
    margin-right: 5px;
    font-weight: bold;
}

#command-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    caret-color: #00ff00;
}

.output-line {
    margin: 5px 0;
    line-height: 1.5;
}

.command {
    color: #ffffff;
}

.success {
    color: #00ff00;
}

.error {
    color: #ff5555;
}

.info {
    color: #61afef;
}

.warning {
    color: #e5c07b;
}

.result-table {
    margin: 10px 0;
    color: #c678dd;
}

.banner {
    color: #61afef;
    margin-bottom: 15px;
}

/* Scrollbar styling */
.terminal-body::-webkit-scrollbar {
    width: 10px;
}

.terminal-body::-webkit-scrollbar-track {
    background: #1e1e1e;
}

.terminal-body::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 5px;
}

.terminal-body::-webkit-scrollbar-thumb:hover {
    background: #777;
}

