/* Ralph Wiggum Loop - Terminal Animation Styles */

#ralph-terminal {
    max-width: 600px;
    margin: 1.5rem auto;
}

.ralph-terminal-inner {
    background: #0d1117;
    border-radius: 8px;
    overflow: hidden;
    font-family: 'Monaco', 'Menlo', 'Consolas', 'Courier New', monospace;
    font-size: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.ralph-terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #161b22;
    border-bottom: 1px solid #30363d;
}

.ralph-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.ralph-dot.red { background: #ff5f56; }
.ralph-dot.yellow { background: #ffbd2e; }
.ralph-dot.green { background: #27ca40; }

.ralph-terminal-title {
    margin-left: auto;
    color: #8b949e;
    font-size: 12px;
}

.ralph-terminal-content {
    height: 320px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 12px 14px;
    color: #c9d1d9;
    line-height: 1.5;
}

.ralph-terminal-content::-webkit-scrollbar {
    width: 8px;
}

.ralph-terminal-content::-webkit-scrollbar-track {
    background: #0d1117;
}

.ralph-terminal-content::-webkit-scrollbar-thumb {
    background: #30363d;
    border-radius: 4px;
}

.ralph-terminal-status {
    display: flex;
    justify-content: space-between;
    padding: 8px 14px;
    background: #161b22;
    border-top: 1px solid #30363d;
    font-size: 11px;
}

.ralph-status-left {
    color: #3fb950;
}

.ralph-status-right {
    color: #8b949e;
}

.ralph-line {
    margin: 2px 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.ralph-prompt {
    color: #7ee787;
}

.ralph-cmd {
    color: #79c0ff;
}

.ralph-dim {
    color: #6e7681;
}

.ralph-iteration {
    color: #a371f7;
    font-weight: 600;
}

.ralph-success {
    color: #3fb950;
}

.ralph-error {
    color: #f85149;
}

.ralph-file {
    color: #d2a8ff;
}

.ralph-add {
    color: #7ee787;
}

.ralph-complete {
    color: #58a6ff;
    font-weight: 600;
}
