.bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  background-color: rgb(26, 26, 26);
  z-index: 300;
  border-top: 1px solid;
  border-top-color: rgb(55, 55, 55);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.now-playing-section {
  display: flex;
  width: 300px;
  margin-left: 16px;
  min-width: 220px;
}

.current-song-section img {
  width: 55px;
  object-fit: cover;
}

.current-song-section {
  padding-right: 0;
}

.song-info-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 14px;
  padding-right: 30px;
}

.song-title {
  font-size: 13px;
  font-weight: 700;
  padding-bottom: 3px;
}

.song-artist {
  font-size: 11px;
  color: rgb(180, 180, 180);
}

.like-button {
  background-color: transparent;
  border: none;
}

.song-options-section {
  display: flex;
  flex-direction: column;
  max-width: 500px;
}

.song-options {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  min-width: max-content;
}

.song-options img {
  width: 17px;
  object-fit: fill;
}

.song-options > button {
  margin-left: 12px;
  margin-right: 12px;
  border: none;
  background-color: transparent;
}

.song-options .pause-icon-container {
  background-color: white;
  padding: 8px;
  border-radius: 100%;
}
.song-options-section {
  display: flex;
  margin-right: 100px;
  flex: 1;
}

.song-bar {
  flex: 1;
  background-color: rgb(90, 90, 90);
  height: 4px;
  margin-left: 10px;
  margin-right: 10px;
  border-radius: 5px;
}

.song-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 6px;
  color: rgb(180, 180, 180);
  font-size: 11px;
  font-weight: 400;
}
.other-options > button {
  margin-left: 7px;
  margin-right: 7px;
  border: none;
  background-color: transparent;
}
.other-options {
  display: flex;
  align-items: center;
  min-width: max-content;
  margin-right: 13px;
}

.volume-slider {
  width: 90px;
  background-color: rgb(90, 90, 90);
  height: 4px;
  margin-left: 5px;
  margin-right: 10px;
  border-radius: 5px;
}
