/* 
 * AGNIDHRA OS - TERMINAL CLI OVERLAY
 */
#os-terminal-overlay {
    position: fixed;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 800px;
    height: 40vh;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-top: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 20px rgba(59, 130, 246, 0.2);
    z-index: 99999;
    padding: 20px;
    display: flex;
    flex-direction: column;
    font-family: 'Share Tech Mono', monospace;
    transition: top 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
}

#os-terminal-overlay.active {
    top: 0;
    opacity: 1;
    pointer-events: auto;
}

#os-terminal-output {
    flex-grow: 1;
    overflow-y: auto;
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 15px;
    padding-right: 10px;
}

#os-terminal-output .log-line {
    margin-bottom: 5px;
    line-height: 1.4;
}
#os-terminal-output .log-line.error { color: #f87171; }
#os-terminal-output .log-line.success { color: #4ade80; }
#os-terminal-output .log-line.system { color: #60a5fa; }
#os-terminal-output .log-line.user { color: #fcd34d; }

#os-terminal-input-wrapper {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 10px;
}

#os-terminal-prompt {
    color: #4ade80;
    margin-right: 10px;
    font-weight: bold;
}

#os-terminal-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    outline: none;
}

#os-terminal-output::-webkit-scrollbar {
    width: 6px;
}
#os-terminal-output::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.2);
}
#os-terminal-output::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.5);
    border-radius: 3px;
}
