/* ====================================================================================================
// MUSIC.CSS					Music library code
//								Last updated: 15 Mar 2022
// ==================================================================================================== */

/* ==== Google font ==== */
@import url('http://fonts.googleapis.com/css?family=Roboto+Slab');
/* === fontawesome === */
@import url('font-awesome.css');

/* ==== overwrite bootstrap standard ==== */
@import url('overwrite.css');
@import url('animate.css');


body {
	font-family:'Roboto Slab', Tahoma, 'San serif';
	font-size:14px;
	font-weight:300;
	line-height:1.6em;
	color:#000000;
	background-color:#FFFFFF;
	}

a {
	text-decoration:none;	
	color:#000000;
	}

a:hover {
	text-decoration:none;	
	color:#FFFFFF;
	background-color:#00FF00;
	}

button.btn-default {
	margin-top:10px;
	margin-bottom:30px;
	background-color:#2d7018;
	color:#fff;
	}

button.btn-default:hover {
	background-color:#eee;
	color:#2d7018;
	}


table {
	width: 100%; 
	}

td.head {
	width: 1%;
	}

td.nowrap {
	text-align: center;
	white-space: nowrap;
	}

table, th, td {
	border: 0px;
	border-collapse: collapse;
	color: #000;
	}

th, td {
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 10px;
	padding-right: 10px;
	}

th {
	background-color: green;
	color: #FFF;
	}

h2 {
	color: #2d7018;
	}

h3, h4 {
	line-height: 0.9em;
	margin-block-start: 0.3em;
	margin-block-end: 0.3em;
	}
	
strong {
	color: blue;
	}


/* navigation panel for song search */

#nav-buttons {
	display:block;
	position:fixed;
	font-size:15px;
	font-weight:200;
	text-shadow:none;
	color: #000;
	z-index:1000;
	top:15em;
	left:1em;
	width:6em;
	padding:0.3em;
	text-align:center;
	background-color:#ffff99;
	border-left:1px #666666 solid;
	border-top:1px #666666 solid;
	border-right:3px #666666 solid;
	border-bottom:3px #666666 solid;
	opacity: 0.6;
	}

#nav-buttons a {
	color: #000;
	text-decoration: none;
	}

#nav-buttons a:hover {
	color: #fff;
	background-color: blue;
	font-weight:400;
	}

/* Button */

input[type="button"],
input[type="submit"],
input[type="reset"],
button,
.button {
	position: relative;
	display: inline-block;
	font-size: 1em;
	line-height: 0.9em;
	background: #2d7018;
	color: #fff;
	text-align: center;
	vertical-align: middle;
	align: center;
	border-radius: 0.5em;
	text-decoration: none;
	padding: 0.65em 1.5em 0.65em 1.5em;
	margin-bottom: 0.2em;
	border: 0;
	cursor: pointer;
	outline: 0;
	font-weight: 300;
	-moz-transition: background-color 0.35s ease-in-out, color 0.35s ease-in-out, border-bottom-color 0.35s ease-in-out;
	-webkit-transition: background-color 0.35s ease-in-out, color 0.35s ease-in-out, border-bottom-color 0.35s ease-in-out;
	-ms-transition: background-color 0.35s ease-in-out, color 0.35s ease-in-out, border-bottom-color 0.35s ease-in-out;
	transition: background-color 0.35s ease-in-out, color 0.35s ease-in-out, border-bottom-color 0.35s ease-in-out;
	}

input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
button:hover,
.button:hover {
	color: #fff;
	background: #4bbd28;
	}

input[type="button"].alt,
input[type="submit"].alt,
input[type="reset"].alt,
button.alt,
.button.alt {
	background: #f49542;
	}

input[type="button"].alt:hover,
input[type="submit"].alt:hover,
input[type="reset"].alt:hover,
button.alt:hover,
.button.alt:hover {
	background: #f8bb87;
	}

