body,
html {
  background-color: black;
  color: white;
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#main {
  flex: 1;
  /* grows to take up leftover space */
}
a {
  color: white;
}
a:hover {
  color: #a8bfa4;
}
a._loadalbum {
  text-decoration: none;
}
.button {
  text-decoration: none;
  background-color: #333333;
  color: white;
  cursor: pointer;
  display: inline-block;
  padding: 0.2em;
  text-align: center;
  margin-right: 1px;
  min-width: 10em;
}
.button:hover {
  background-color: #a8bfa4;
  color: black;
}
.tab {
  display: none;
}
.tab#tab_tracks {
  display: block;
}
.tabbed {
  background-color: #222;
}
.tabbed div.selected {
  background-color: #111;
}
.tabbed div.selected:hover {
  background-color: #a8bfa4;
}
#albumdetail {
  margin-top: 4em;
}
.maininfo {
  position: relative;
}
.cover {
  border: 1px solid black;
}
.cover:hover {
  border: 1px solid white;
}
.inlay {
  position: absolute;
  width: 175px;
  bottom: 0;
  left: 12px;
  border: 1px solid black;
}
.inlay:hover {
  border: 1px solid white;
}
ul.tracklist {
  list-style: none;
  padding: 0;
  margin-top: 1em;
}
ul.tracklist li {
  cursor: pointer;
  padding: 0.5em;
}
ul.tracklist li .duration {
  float: right;
  padding-top: 0.3em;
}
ul.tracklist li .trnr {
  padding: 0.5em;
  width: 2em;
  display: inline-block;
}
ul.tracklist li .participants {
  margin-top: -1em;
  padding-left: 2.8em;
  font-size: 80%;
  color: #ccc;
}
ul.tracklist li:hover {
  background-color: #333333;
}
ul.tracklist li.selected {
  background-color: #a8bfa4;
  color: black;
}
#player {
  position: fixed;
  bottom: -2em;
  left: 0;
  width: 100%;
  background-color: #333;
  font-size: 2em;
  transition: bottom 0.5s ease;
}
#player td {
  padding: 0;
}
#player #controls {
  display: inline-block;
  white-space: nowrap;
}
#player #controls div {
  display: inline-block;
  cursor: pointer;
}
#player #controls .player_button {
  padding: 0.5em 0.5em;
  width: 2em;
  text-align: center;
}
#player #controls .player_button:hover {
  background-color: #a8bfa4;
  color: #333333;
}
#player #barholder {
  width: 100%;
  position: relative;
  height: 2em;
  cursor: pointer;
}
#player #barholder #invisibar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2em;
  background-color: transparent;
  z-index: 10;
}
#player #barholder #title {
  position: absolute;
  top: 0.4em;
  left: 0.4em;
  width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#player #barholder #time {
  position: absolute;
  top: 0.4em;
  right: 0.4em;
}
#player #barholder #bar {
  height: 100%;
  width: 0%;
  background-color: #a8bfa4;
  transition: width 0.2s ease;
}
