body {
	margin: 0;
	padding: 0;
	background: #000 url("gfx/background.gif");
	background-attachment: fixed;
	background-repeat: repeat-x;
}
body, td, th {
	font-family: 'Roboto Condensed', 'Arial', sans-serif;
	font-size: 16px;
	color: #BBB;
}

@font-face {
	font-family: "oswald";
	src: url(mpdf/ttfonts/Oswald.ttf) format("truetype");
}

section {
	display: block;
	position: relative;
	float: left;
	background-color: #181818;
	border-radius: 6px;
	margin: 10px 5px 0 5px;
	padding: 10px 15px;
	max-width: 280px;
}

section#import {
	background-color: transparent;
	max-width: 310px;
	padding: 0;
}

input[type=text], textarea {
	border: 0;
	padding: 3px 3px;
	width: 140px;
	font-family: 'Roboto Condensed', 'Arial', sans-serif;
	background-color: #AAA;
	border-radius: 2px;
	font-size: 15px;
	color: #000;
}

section#settings input[type=text].incrementable {
	background-color: transparent;
	width: 25px;
	padding: 0;
	color: #FFF;
	font-size: 1.05em;
	text-align: center;
}

table {
	width: 100%;
	border-spacing: 0;
	margin-bottom: 10px;
}
th, td {
	padding: 5px 4px;
	user-select: none;
}

section#songs tr td {
	height: 25px;
}
section#songs tr td:first-of-type {
	padding-right: 0;
	font-size: 0.8em;
	text-align: right;
	vertical-align: middle;
}
section#songs .separator {
	height: 1px;
	color: transparent;
	cursor: default;
}

section div {
	width: 100%;
}

.button {
	display: inline-block;
	position: relative;
	margin: 2px 4px;
	padding: 4px 9px 6px 9px;
	border: 0;
	border-radius: 2px;
	background-color:#1A2;
	box-shadow:inset 0 -0.6em 0 -0.35em rgba(0,0,0,0.25);
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 1.05em;
	color: #FFFFFF;
	text-decoration: none;
}
.button:active {
	top: 0.1em;
}

.hidden {
	display: none;
}
.centerText {
	text-align: center;
}
.pale {
	opacity: 0.4;
}

/* FontAwesome tweaks */
.fa {
	cursor: pointer;
}
.button .fa {
	margin: 0 2px 0 0;
	font-size: 0.9em;
}
section#songs td .fa {
	font-size: 1.1em;
	margin: 0 3px;
}
td .fa:hover {
	color: #FF0;
	opacity: 1;
}

/* Fonts */
#fonts span {
	line-height: 16px;
}
.arial {
	font-family: 'Arial', sans-serif;
}
.arialNarrow {
	font-family: 'Arial', sans-serif;
	font-stretch: condensed;
}
.robotoCondensed {
	font-family: 'Roboto Condensed', 'Arial Narrow', sans-serif;
}
.oswald {
	font-family: 'oswald', 'Arial', sans-serif;
}

/* Drop container */
input[type=file]::file-selector-button {
	margin-right: 20px;
	border: none;
	background: #084cdf;
	padding: 10px 10px;
	border-radius: 6px;
	color: #fff;
	cursor: pointer;
	transition: background .2s ease-in-out;
}

input[type=file]::file-selector-button:hover {
	background: #0d45a5;
}

.drop-container {
	position: relative;
	display: flex;
	gap: 10px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 150px;
	padding: 20px;
	border-radius: 10px;
	border: 2px dashed #555;
	color: #777;
	cursor: pointer;
	transition: background .2s ease-in-out, border .2s ease-in-out;
}

.drop-container:hover {
	background: #333;
	border-color: #111;
}

.drop-container:hover .drop-title {
	color: #999;
}

.drop-title {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	transition: color .2s ease-in-out;
}

.drop-container.drag-active {
	background: #242;
	border-color: #111;
}

.drop-container.drag-active .drop-title {
	color: #999;
}