

.content-log {
    /* background: #0a0a0a; */
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    padding: 20px;
}

.log-header {
    /* background: #1e1e1e; */
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4caf50;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

.controls {
    display: flex;
    gap: 10px;
}

.log-container {
    background: #0a0a0a;
    color: #d4d4d4;
    height: calc(100vh - 205px);
    overflow-y: auto;
    font-size: 13px;
    line-height: 1.5;
    border-radius: 5px;
    /* border: 1px solid #2c2c2c; */
}

.log-line {
    padding: 2px 15px;
    border-bottom: 1px solid #1a1a1a;
    white-space: pre-wrap;
    word-break: break-all;
}

.log-line:hover {
    background: #1a1a1a;
}

.log-error {
    color: #f48771;
    background: rgba(244, 135, 113, 0.1);
}

.log-warning {
    color: #dcdcaa;
}

.log-info {
    color: #9cdcfe;
}

.log-normal {
    color: #ce9178;
}

.timestamp {
    color: #6a9955;
    margin-right: 10px;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
