body {
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: 'Ubuntu Mono', 'Courier New', monospace;
    overflow: hidden;
}

#terminal {
    width: 100vw;
    height: 100vh;
    background-color: #1a1a1a;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
    white-space: pre-wrap;
    font-size: 14px;
    line-height: 1.4;
}

#output {
    margin-bottom: 10px;
}

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

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

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

/* .cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background-color: #ffffff;
    animation: blink 1s infinite;
    margin-left: 2px;
} */

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.error {
    color: #ff5555;
}

.directory {
    color: #5fd7ff;
    font-weight: bold;
}

.executable {
    color: #50fa7b;
    font-weight: bold;
}

.file {
    color: #f8f8f2;
}

.system-info {
    color: #ffb86c;
}

.warning {
    color: #f1fa8c;
}

.success {
    color: #50fa7b;
}

.permission {
    color: #8be9fd;
    font-family: monospace;
    font-size: 12px;
}

.link {
    color: #8be9fd;
    text-decoration: underline;
}

.help-text {
    color: #00FF00;
}
