.WorkSpace {
	position: relative;
	margin: 0px 60px 10px 60px;
	padding: 10px 5px;
	background-color: transparent;
	height: 480px;
	overflow-y: scroll;
	overflow-x: hidden;

}

.WorkSpace #Program_Column {
	position: relative;
	display: flex;
	margin: 5px 0px 5px 0px;
	border-radius: 10px;
	border-style: solid;
	border-width: 1px;
	border-color: transparent;
	height: 80px;
	background-color: #212121;
	justify-content: space-between;
	justify-items: center;
	align-items: center;
}

.WorkSpace #Program_Column img {
	background-color: transparent;
	width: 70px;
	height: 70px;
	margin-top: 5px;
	margin-bottom: 5px;
}

.WorkSpace #Program_Column #Header {
	background-color: transparent;
	color: white;
	margin-left: -350px;
}

.WorkSpace #Program_Column #Description {
	background-color: transparent;
	color: white;
}

.WorkSpace #Program_Column #Download_Button {
	background-color: blue;
	color: white;
	padding: 5px 5px;
	border-style: solid;
	border-width: 1px;
	border-radius: 10px;
	border-color: blue;
	margin-right: 20px;
}

/* width */
::-webkit-scrollbar {
  width: 20px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px transparent; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: transparent; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: transparent; 
}