body {
  margin: 0;
  font-family: sans-serif;
  background: transparent;
}

#player-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px 12px;
  height: 60px;
  border-top: 1px solid #444;
  font-size: 1.1rem;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 9999;
  background-color: #111;
  color: white;
}

#player-bar.light {
  background-color: #f5f5f5;
  color: #111;
  border-top: 1px solid #ccc;
}

select, button, input[type="range"] {
  background: none;
  border: none;
  color: inherit;
  font-size: 1rem;
  cursor: pointer;
}

input[type="range"] {
  width: 100px;
}
