body {
	background-color: #424242;
	margin: 0px;
	color: #E6E6E6;
	font-size: 100%;
}
.controls {
	display: flex;
	justify-content: center;
	margin: 24px;
}
.controls > *{ /*selects all children*/
	padding: 12px;
	border-radius: 5px;
	border-width: 1px;
	border-color: #868686;
	margin: 2px;
}
.controls > button:hover {
	background-color: #4D4D4D;
	color: white;
	border-color: white;
	border-style: solid;
}
.playing {
	background-image: linear-gradient(to right, #0000FF , #FF0000);
	color: white;
	box-shadow: inset 0px 0px 0px 1px #ffffff;
}
.hidden {
	display: none !important;
}

/* Album related css below */
.album-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, 200px);
	grid-template-rows: repeat(auto-fit, 220px);
	grid-gap: 20px;
	justify-content: center;
	margin-top: 20px;
	margin-bottom: 20px;
}
.album-container > *{
	max-width: 200px;
	max-height: 220px;
}
.album {
  border-style: solid;
  border-width: 1px;
  border-color: #999999;
  border-radius: 15px;
	background-color: #303030;
	display: flex;
	flex-direction: column;
}
.album-img-container {
	height: 90%;
	box-sizing: border-box;
	padding: 10px;
}
.album-img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
}
.album-text-container {
	height: 10%;
	box-sizing: border-box;
	padding: 10px;
	padding-top: 0px;
	margin-top: -7px;
}
.album-title {
	font-size: 120%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Track related css below */
.track-container {
	display: grid;
	grid-template-rows: repeat(auto-fit, 60px);
	grid-gap: 10px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}
.track-container > *{
	max-height: 60px;
	max-width: 100vw;
}
.track {
	/*background-color: #303030;*/
	display: flex;
	flex-direction: row;
	overflow: hidden;
}
.track-img-container {
	width: 60px;
	height: 60px;
	box-sizing: border-box;
	padding: 3px;
}
.track-img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 5px;
}
.track-text-container {
	width: 90%;
	box-sizing: border-box;
	padding: 5px;
	padding-left: 10px;
	display: flex;
	flex-direction: column;
}
.track-title {
	color: #ffffff;
	font-size: 160%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.track-subtitle {
	font-size: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.track:hover {
	background-color: rgba(0, 0, 0, 0.2);
}
