
body {
  font-family: Arial, sans-serif;
  margin: 10pt;
  background-color: #333333;
  color: #DDDDDD;
}

input, select, button {
  padding: 3pt;
  margin: 2pt;
  font-size: 12pt;
}

.song {
  margin: 10pt 0;
  padding: 10pt;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.error {
  color: red;
}

.grid {
  
  display: grid;
  template-rows: auto 1fr;
  grid-template:
    "header1 header2 header3" 20pt
    "title artist brand" 1fr
    / auto fit-content(120pt) fit-content(150pt);
  }


.closed .col-3 {
  display: none;
}

.closed.grid {
  grid-template:
    "header1 header2" 20pt
    "title artist" 1fr
    / auto fit-content(150pt) ;
  }

.grid div {
  padding-left: 4pt;
  padding-right: 4pt;
  overflow: hidden;
}

.header {
  background-color: #666666; 
  color: white;
  font-weight: bold;
}

.grid > .header:nth-child(1) {
  grid-area: header1;
}
.grid > .header:nth-child(2) {
  grid-area: header2;
}
.grid > .header:nth-child(3) {
  grid-area: header3;
}
/* background color of odd numbered rows */
.grid > div:nth-child(6n + 4),
.grid > div:nth-child(6n + 5),
.grid > div:nth-child(6n + 6) {
  background: rgba(0,0,0,.5);
}
