/* Terminal Footer Styles */
#terminal-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid #333;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    z-index: 9990;
    transform: translateY(100%);
    /* Hidden by default */
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

#terminal-footer.open {
    transform: translateY(0);
}

.terminal-header {
    padding: 8px 16px;
    background: #1a1a1a;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.terminal-title {
    font-weight: bold;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
}

.terminal-status {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 5px #00ff00;
}

.terminal-body {
    flex: 1;
    padding: 12px 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.terminal-line {
    opacity: 0.8;
    line-height: 1.4;
}

.terminal-line .timestamp {
    color: #666;
    margin-right: 8px;
}

.terminal-line .source {
    color: #00ffff;
    margin-right: 8px;
}

.terminal-line .message {
    color: #e0e0e0;
}

/* Scrollbar */
#terminal-footer ::-webkit-scrollbar {
    width: 6px;
}

#terminal-footer ::-webkit-scrollbar-track {
    background: #111;
}

#terminal-footer ::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}