.music_container {
  background-color: rgba(255, 0, 255, 0.1);
  padding: 15px 5px;
  border-radius: 10px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.music_container_white {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
  border-radius: 20px;
  width: 40%;
  margin: 10px auto;
  text-align: center;
}

@media screen and (max-width:300px)
{
  .music_container
  {
    width: 100%;
    font-size: 1.0em;
  }

  .music_container_white
  {
    width: 80%;
  }
}

@media screen and (min-width:301px) and (max-width:800px)
{
  .music_container
  {
    width: 100%;
    font-size: 1.0em;
  }

  .music_container_white
  {
    width: 80%;
  }
}

@media screen and (min-width:801px) and (max-width:1200px)
{
  .music_container
  {
    width: 100%;
    font-size: 0.8em;
  }

  .music_container_white
  {
    width: 64%;
  }
}

@media screen and (min-width:1201px)
{
  .music_container
  {
    width: 100%;
    font-size: 0.9em;
  }

  .music_container_white
  {
   width: 55%;
  }
}

/* Glowing effect for chosen music */
/* Add this to your CSS file */
.glowing-effect {
  box-shadow: 0 0 15px 7px rgba(255, 116, 130, 0.8); /* Adjusted glow */
  transition: box-shadow 0.3s ease-in-out; /* Smooth transition */
  border-radius: 10px; /* Ensure it matches the image's border-radius */
}
