.container {
display: flex;
flex-direction: column;
height: 100%;
background: var(--bg-terminal);
border-left: 1px solid var(--border-color);
}
.header {
display: flex;
align-items: center;
gap: var(--spacing-sm);
padding: var(--spacing-md);
background: var(--bg-secondary);
border-bottom: 1px solid var(--border-color);
}
.headerIcon {
color: var(--accent-green);
animation: pulse 2s infinite;
}
.headerTitle {
font-size: 0.75rem;
letter-spacing: 0.1em;
color: var(--text-secondary);
text-transform: uppercase;
}
.headerBadge {
margin-left: auto;
font-size: 0.625rem;
padding: 2px 6px;
background: var(--accent-green);
color: var(--bg-primary);
border-radius: 2px;
font-weight: 600;
animation: pulse 2s infinite;
}
.log {
flex: 1;
overflow-y: auto;
padding: var(--spacing-md);
font-size: 0.8125rem;
line-height: 1.8;
scrollbar-width: thin;
scrollbar-color: var(--border-color) transparent;
}
/* Custom Scrollbar for Webkit */
.log::-webkit-scrollbar {
width: 6px;
}
.log::-webkit-scrollbar-track {
background: transparent;
}
.log::-webkit-scrollbar-thumb {
background: var(--border-color);
border-radius: 10px;
}
.log::-webkit-scrollbar-thumb:hover {
background: var(--text-muted);
}
.empty {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
color: var(--text-muted);
gap: var(--spacing-md);
}
.emptyIcon {
font-size: 2rem;
opacity: 0.5;
}
.entry {
display: flex;
flex-wrap: wrap;
gap: var(--spacing-sm);
padding: var(--spacing-xs) 0;
border-bottom: 1px solid rgba(48, 54, 61, 0.5);
animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateX(-10px); }
to { opacity: 1; transform: translateX(0); }
}
.timestamp {
color: var(--text-muted);
font-size: 0.75rem;
min-width: 70px;
}
.action {
color: var(--text-secondary);
flex: 1;
}
.status {
font-weight: 600;
min-width: 80px;
text-align: right;
}
.statusPass {
color: var(--accent-green);
}
.statusWarn {
color: var(--accent-yellow);
}
.statusBlock {
color: var(--accent-red);
}
.statusPending {
color: var(--accent-cyan);
}
.details {
width: 100%;
padding-left: 80px;
color: var(--text-muted);
font-size: 0.75rem;
font-style: italic;
}
/* Threaded View Styles */
.thread {
margin-bottom: var(--spacing-sm);
border: 1px solid rgba(48, 54, 61, 0.3);
background: rgba(0, 0, 0, 0.2);
transition: all 0.2s ease;
}
.threadHeader {
display: flex;
align-items: center;
padding: 6px 10px;
cursor: pointer;
background: rgba(255, 255, 255, 0.02);
gap: 8px;
user-select: none;
}
.threadHeader:hover {
background: rgba(255, 255, 255, 0.05);
}
.expandIcon {
font-size: 0.625rem;
color: var(--text-muted);
width: 12px;
}
.queryText {
font-family: var(--font-mono);
font-size: 0.75rem;
color: var(--accent-cyan);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
flex: 1;
}
.entryCount {
font-size: 0.625rem;
color: var(--text-muted);
font-family: var(--font-mono);
}
.threadContent {
padding: 0 10px 10px;
animation: slideDown 0.2s ease-out;
}
@keyframes slideDown {
from { opacity: 0; transform: translateY(-5px); }
to { opacity: 1; transform: translateY(0); }
}
.latestThread {
border-color: rgba(0, 255, 136, 0.2);
box-shadow: 0 0 15px rgba(0, 255, 136, 0.05);
}
.latestThread .queryText {
color: var(--accent-green);
}
.processing {
color: var(--accent-cyan);
border-bottom: none;
}
.processingIcon {
animation: blink 0.5s infinite;
}
.dots {
animation: dots 1.5s infinite;
}
@keyframes blink {
0%, 50% { opacity: 1; }
51%, 100% { opacity: 0; }
}
@keyframes dots {
0%, 20% { content: '.'; }
40% { content: '..'; }
60%, 100% { content: '...'; }
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.6; }
}