@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../webfonts/Roboto-Regular.ttf") format("truetype");
}

:root {
  --main-color: #0B6FA4;
}
body {
	font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  margin: 10px;
}

fieldset {
  border: 1px solid #000000;
}

a, a:visited, a:active {
  color: black;  
}

a:hover {
  font-weight: bold;  
}

button {
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  border-width: 0px; 
  border-radius: 1em;
  padding: .75em 3em;
  margin: 0.25em;
  font-weight: bold;
  transition: 0.3s;
  background-color: var(--main-color);
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.5);
}

button.icononly {
  color: var(--main-color);
  border-width: 0px; 
  border-radius: 1em;
  padding: .5em .5em;
  background-color: transparent;
  box-shadow: none;
}

button:hover {
  opacity: .7;
}

button.small {
  padding: .5em .5em;
}
button.small span {
  display: none;
}
div {
  text-align: center;
}
.center {
  text-align: center;
}
.songs table {
  border-collapse: collapse;  
  background-color: transparent;
  width: 100%;
}

.songs table thead {
  border: 0px solid #FFFFFF;
}

.songs table tr {
  background-color: transparent;
}

.songs table td, .songs table th {
  color: #000000;
  background-color: transparent;
  border: 0px;
}

.songs table td {
  border: 1px solid black;
  position: relative;
}

.songs table tr:nth-child(even) {
  background-color: rgb(208, 228, 245, 0.5);
}

.songs table tr.selected {
  background-color: rgba(0, 128, 0, 0.5);
}
.songs table td.qrcode {
  cursor: pointer;
}
.songs table tr .fa-barcode, .songs table tr .fa-circle-plus, .songs table tr .fa-circle-check {
  margin: 5px;
  font-size: 1.5em;
  color: rgb(0, 0, 0);
}

.songs table tr .fa-circle-plus {
  display: inline;
  color: rgb(0, 128, 0);
}

.songs table tr .fa-circle-check {
  display: none;
  color: rgb(0, 128, 0);
}

.songs table tr.selected td .fa-circle-plus {
  display: none;
}

.songs table tr.selected .fa-circle-check {
  display: inline;
}

#selectedSongsText {
  width: 100%;
}

#songInfo {
  display: none;
  padding: 1em;
  border-radius: 1em;
  border: 2px solid var(--main-color);
  background-color: rgb(208, 228, 245, 1);
  width: 300px;
  position: fixed;
  text-align: center;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);  
}

#songQRCode {
  width: 256px;
  margin: 1em auto;
}







