/* Live Logs Console - Bare minimum */

.console-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.console-container {
    flex: 1;
    overflow: hidden;
}

.console-output {
    height: 100%;
    overflow-y: auto;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.4;
    padding: 8px;
}

.line-item {
    display: flex;
    flex-direction: row;
    column-gap: 5px;
    white-space: pre-wrap;
    align-items: flex-start;
}

.line-item-header {
    display: flex;
    flex-direction: column;
    column-gap: 4px;
}

.badge {
    border-radius: 4px;
    background-color: white;
    color: black;
    font-weight: 600;
    line-height: 12px;
    padding: 4px;
    font-size: 14px;
}

.log-timestamp {
    color: var(--text-tertiary);
}

/* Severity Colors Only */
.log-severity-trace {
    color: #6b7280;
}

.log-severity-debug {
    color: #6b7280;
}

.log-severity-info {
    color: #2563eb;
}

.log-severity-warn {
    color: #d97706;
}

.log-severity-error,
.log-severity-fail {
    color: #dc2626;
}

.log-severity-crit {
    background: #dc2626;
    color: #ffffff;
    padding: 0 4px;
}

/* Dark mode */
[data-theme="dark"] .console-output {
    background: #0a0e14;
    color: #e2e8f0;
}

[data-theme="dark"] .log-severity-debug {
    color: #9ca3af;
}

[data-theme="dark"] .log-severity-info {
    color: #60a5fa;
}

[data-theme="dark"] .log-severity-warn {
    color: #fbbf24;
}

[data-theme="dark"] .log-severity-error,
[data-theme="dark"] .log-severity-fail {
    color: #f87171;
}

[data-theme="dark"] .log-severity-crit {
    background: #b91c1c;
}
