/* Soul Lab Terminal Styles */

#soul-lab {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 12, 27, 0.98);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

#soul-lab.active {
    transform: translateY(0);
}

.terminal-window {
    width: 100%;
    max-width: 800px;
    height: 60vh;
    background: #0a192f;
    border: 1px solid #333;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    font-family: var(--font-mono);
    color: var(--accent-blue);
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
}

.terminal-window,
.terminal-window * {
    cursor: default !important;
}

.terminal-window input {
    cursor: text !important;
}

.terminal-header {
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-dim);
    display: flex;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: #0a192f; /* Match terminal background */
    z-index: 10;
    padding-top: 0.5rem; /* Add padding to compensate for sticky */
    margin-top: -0.5rem; /* Pull back to align */
}

.terminal-content {
    flex-grow: 1;
}

.command-line {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--glass-border);
    font-family: var(--font-mono);
}

.prompt {
    color: var(--accent-cyan); /* Changed from gold to cyan */
    margin-right: 0.5rem;
}

.input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-main);
    font-family: var(--font-mono);
    font-size: 0.9rem;
}