@charset "UTF-8";
/* CSS Document */

.floating-audio-bar {
  position: fixed;
  bottom: 0;       /* Align to the bottom */
  left: 0;
  width: 45%;     /* Full width bar */
  background: #1e0623;
  padding: 5px;
  z-index: 1000;   /* Keeps it above other content */
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.floating-audio-bar audio {
  width: 100%;     /* Makes the audio bar fill the container */
}
