.queue-list {
    max-height: 400px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.queue-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.6rem 0.75rem;
    transition: all 0.2s ease;
}

.queue-item:hover {
    background: rgba(255,255,255,0.04);
}

.queue-item-thumb {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    object-fit: cover;
    background: rgba(255,255,255,0.05);
    flex-shrink: 0;
}

.queue-item-info {
    flex: 1;
    min-width: 0;
}

.queue-item-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.queue-item-size {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.queue-item-status {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

.status-pending { color: var(--text-muted); background: rgba(255,255,255,0.03); }
.status-processing { color: #fbbf24; background: rgba(251,191,36,0.1); }
.status-success { color: #34d399; background: rgba(52,211,153,0.1); }
.status-error { color: #f87171; background: rgba(248,113,113,0.1); }