body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  background-color: #000;
  color: #fff;
  overflow: hidden;
}

.main {
  display: flex;
  height: 100vh;
  padding: 0.5rem;
}
.sidebar {
  background-color: #000;
  border-radius: 1rem;
  width: 340px;
  margin-right: 0.5rem;
}

.main-content {
  background-color: #121212;
  border-radius: 1rem;
  flex: 1;
  overflow: auto;
  padding: 0 1.5rem 0 1.5rem;
}
.music-player {
  background-color: #000;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 72px;
}

a {
  text-decoration: none;
  color: white;
}

.nav {
  background-color: #121212;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100px;
  padding: 0.5rem 0.75rem;
}

.nav-option {
  line-height: 2.5rem;
  opacity: 0.6;
  padding: 0.5rem 0.75rem;
}

.nav-option:hover {
  opacity: 1;
}
.nav-option i {
  font-size: 1.25rem;
}
.nav-option a {
  font-size: 1rem;
  margin-left: 1rem;
}
.library {
  background-color: #121212;
  border-radius: 1rem;
  height: 100%;
  margin-top: 0.5rem;
  padding: 0.5rem 0.75rem;
}
.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lib-option img {
  height: 1.25rem;
  width: 1.25rem;
}
.icons {
  font-size: 1.25rem;
  display: flex;
}
.icons i {
  opacity: 0.7;
  margin-right: 1rem;
}
.icons i:hover {
  opacity: 1;
}

.box {
  height: 8rem;
  background-color: #232323;
  border-radius: 0.75rem;
  margin: 0.5rem 0 0.5rem 0;
  padding: 0.75rem 1rem;
}

.box-p1 {
  font-size: 1rem;
  font-weight: 500;
}
.box-p2 {
  font-size: 0.85rem;
  opacity: 0.9;
}
.badge {
  background-color: #fff;
  border: none;
  border-radius: 100px;
  padding: 0.25rem 1rem;
  font-weight: 700;
  margin-top: 0.5rem;
  height: 2rem;
  width: fit-content;
}
.dark-badge {
  background-color: #000;
  color: #fff;
}

.sticky-nav {
  position: sticky;
  top: 0px;
  background-color: #121212;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0 1rem 0;
  z-index: 10;
}
.nav-img {
  display: flex;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  padding: 0.5rem 0.5rem;
}
.navigation {
  opacity: 0.6;
}
.navigation:hover {
  opacity: 0.9;
}

.nav-img:hover {
  background-color: #232323;
}

.sticky-nav-icons {
  margin-left: 0.75rem;
  display: flex;
}
.sticky-nav-options {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-item {
  margin-right: 1rem;
}
@media (max-width: 1000px) {
  .hide {
    display: none;
  }
}

.card {
  background-color: #232323;
  width: 150px;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-left: 1.5rem;
  margin-top: 1rem;
}
.cards-container {
  display: flex;
  flex-wrap: wrap;
}
.card-img {
  width: 100%;
  border-radius: 0.5rem;
  height: 9.375rem;
  object-fit: cover;
}
.card-title {
  font-weight: 700;
  cursor: pointer;
}
.card-info {
  font-size: 0.75rem;
  opacity: 0.8;
  cursor: pointer;
}

.footer {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.line {
  width: 90%;
  height: 50%;
  border-top: 1px solid white;
  opacity: 0.4;
}
.music-player {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.player {
  width: 50%;
}
.controls {
  width: 25%;
}
.player-controls {
  display: flex;
  justify-content: center;
  align-items: center;
}
.player-control-icon {
  height: 1rem;
  margin-right: 1.75rem;
  opacity: 0.7;
}
.player-control-icon:hover {
  opacity: 1;
  scale: 1.06;
}
.playback-bar {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin-right: 2rem;
}

input[type="range"] {
  /* Reset defaults */
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  width: 70%;
  outline: none;
  height: 0.2rem;
  border-radius: 0.2rem;

  /* Key styles for the progress fill effect */
  background-image: linear-gradient(#04aa6d, #04aa6d); /* Green fill color */
  background-repeat: no-repeat;
  background-color: #d3d3d3; /* Remaining track color (gray) */
  background-size: 0% 100%; /* Start at 0% covered */
}

/* ... (Vendor-specific thumb/track CSS from previous response should also be included) ... */

.album {
  width: 25%;
  display: flex;
  align-items: center;
}
.album-info {
  margin-left: 0.8rem;
}
.album-info-title {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 550;
  line-height: 0.09rem;
  opacity: 0.8;
  cursor: pointer;
}
.album-info-description {
  font-size: 0.7rem;
  line-height: 0.9rem;
  color: #fff;
  opacity: 0.8;
  cursor: pointer;
}
.album-info-title:hover,
.album-info-description:hover {
  opacity: 1;
  text-decoration: underline;
}
.album-icons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.controls {
  display: flex;
  justify-content: center;
  align-items: center;
}
.controls-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 85%;
}
.controls-icon {
  cursor: pointer;
}

.artist-cards-container {
  display: flex;
  flex-wrap: wrap;
}

.artist-card {
  width: 9.375rem;
  border-radius: 50%;
  padding: 1rem;
  margin-left: 1.5rem;
  margin-top: 1rem;
}
.artist-card-img {
  width: 100%;
  border-radius: 50%;
  height: 10rem;
  object-fit: cover;
}
.artist-card-img:hover {
  scale: 1.05;
  transition-timing-function: ease-in;
  transition-duration: 0.5s;
}

/* making responsive */
@media (max-width: 1500px) {
  .sidebar {
    width: 290px;
  }
  .nav-option {
    line-height: 2rem;
  }
  .nav-option i {
    font-size: 1.2rem;
  }
  .nav-option a {
    font-size: 0.9rem;
    margin-left: 0.8rem;
  }
  .box {
    height: 6rem;
    background-color: #232323;
    border-radius: 0.8rem;
    margin: 0.5rem 0 0.5rem 0;
    padding: 0.7rem 0.8rem;
  }
  .box-p1 {
    font-size: 0.86rem;
    font-weight: 590;
    line-height: 0.4rem;
  }
  .box-p2 {
    font-size: 0.7rem;
    line-height: 0.5rem;
  }
  .badge {
    border-radius: 100px;
    padding: 0.2rem 1.1rem;
    font-weight: 550;
    margin-top: 0.7 rem;
    height: 1.9rem;
    width: fit-content;
  }
}

.sound-tracker-container {
  display: flex;
  align-items: center;
  width: 80%;
  margin: 2rem auto;
}

input[id="soundRange"] {
  /* Reset defaults */
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  width: 60%; /* Make the slider take full width of its container */
  outline: none;
  height: 0.2rem;
  border-radius: 0.2rem;
  margin-left: 0.5rem;

  /* Key styles for the progress fill effect */
  background-image: linear-gradient(#04aa6d, #04aa6d); /* Orange fill color */
  background-repeat: no-repeat;
  background-color: #d3d3d3; /* Remaining track color (gray) */
  background-size: 0% 100%; /* Start at 0% covered */
}

/* Optional: Style the thumb/handle */
input[id="soundRange"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: #0956fbe9; /* Orange thumb color */
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

input[id="soundRange"]::-moz-range-thumb {
  width: 0.9rem;
  height: 0.9rem;
  border: none;
  border-radius: 50%;
  background: #0956fbe9;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}
