.yt-log-container {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
    min-height: 200px;
}

.yt-log-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.yt-log-title {
    font-size: 8px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.yt-log-list {
    flex-grow: 1;
    padding: 1rem;
    font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
    font-size: 9px;
    line-height: 1.4;
    overflow-y: auto;
    color: rgba(255, 255, 255, 0.7);
    scroll-behavior: smooth;
}

.yt-log-entry {
    margin-bottom: 2px;
    white-space: pre-wrap;
    word-break: break-all;
    border-left: 2px solid transparent;
    padding-left: 8px;
}

.yt-log-entry.info {
    color: #60a5fa;
    border-left-color: #60a5fa44;
}

.yt-log-entry.success {
    color: #4ade80;
    border-left-color: #4ade8044;
}

.yt-log-entry.warning {
    color: #fbbf24;
    border-left-color: #fbbf2444;
}

.yt-log-entry.error {
    color: #f87171;
    border-left-color: #f8717144;
}

.yt-log-entry.progress {
    color: #a78bfa;
}

/* Custom scrollbar for logs */
.yt-log-list::-webkit-scrollbar {
    width: 4px;
}

.yt-log-list::-webkit-scrollbar-track {
    background: transparent;
}

.yt-log-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.yt-log-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}
