.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.log-panel {
    background: var(--card);
    padding: 20px;
    border-radius: 12px;
}

.panel-title {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
}

.log-container {
    background: #0f172a;
    border: 1px solid rgba(255,255,255,0.04);
    padding: 15px;
    font-size: 14px;
    line-height: 20px;
    height: 70vh;
    overflow-y: auto;
    white-space: pre-wrap;
    border-radius: 10px;
}

.log-line {
    padding: 6px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.log-error {
    color: #ef4444;
}
.log-warn {
    color: #f59e0b;
}
.log-info {
    color: #38bdf8;
}
