#content1song {
	float: left;
	padding: 6px;
	margin: 0;
}

#content1song {
	background: #202020;
	color: #656565;
	padding: 15px;
	width: 720px;
	line-height: 15px;
}

#content1song p,
ul,
li,
title {
	line-height: 15px;
	font-weight: 500;
	animation: fadeEffect 1s;
}

@keyframes fadeEffect {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.songlist {
	margin-left: auto;
	margin-right: auto;
	border-spacing: 0px 0px;
}

.songlist tr {
	text-align: center;
}
.songlist td:first-child,
.songlist td:nth-child(2),
.songlist td:nth-child(3) {
	padding: 2px;
	/*min-width: 150px;
				max-width: 260px;*/
	width: 260px;
}
.songlist td:last-child {
	width: 160px;
}

.songlist td:first-child {
	padding-left: 16px;
	border-radius: 8px 0px 0px 8px;
}
.songlist td:not(:first-child) {
	padding-left: 8px;
}
.songlist td:not(:last-child) {
	padding-right: 8px;
}
.songlist td:last-child {
	padding-right: 16px;
	border-radius: 0px 8px 8px 0px;
}

.songlist:not(.artisttable) tr:nth-child(odd) td {
	background-color: rgba(0, 0, 0, 0.075);
}
.songlist.artisttable tr:nth-child(even) td {
	background-color: rgba(0, 0, 0, 0.075);
}
.currentsong td {
	background-color: rgba(255, 255, 255, 0.05) !important;
}

.revealed {
	display: table-row;
	-webkit-animation: fadein 1s;
	animation: fadein 1s;
}
@-webkit-keyframes fadein {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes fadein {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.songsection {
	text-align: left;
} /* Container for the whole bottom part of the page */

.songwrapper /* Flex container for all three languages' lyrics divs */ {
	display: flex;
	flex-direction: row;
	column-gap: 20px;
	row-gap: 50px;
	align-items: baseline;
	max-width: 100%;
	width: fit-content;
	margin: 0px;
}

.songcontent /* Individual language details tag */ {
	margin: 0px;
	flex-basis: fit-content;
}
