        .music-container {
           display: flex;
           overflow-x: auto; 
           padding-bottom: 20px; 
        }
		
		.music-container::-webkit-scrollbar {
               height: 10px;
		
        }

        .music-container::-webkit-scrollbar-track {
           background: #c7c7c7;
		   border-bottom-left-radius: 5px;
            border-bottom-right-radius: 5px;
        }

        .music-container::-webkit-scrollbar-thumb {
           background: #242424;
			border-bottom-left-radius: 5px;
            border-bottom-right-radius: 5px;
        }

        .music-container::-webkit-scrollbar-thumb:hover {
           background: #00336a;
        }

        .music-item {
           margin-right: 20px;
        }

         .music-cover-1 {
           position: relative;
           width: 250px; 
		   overflow: hidden; 
           transition: transform 0.3s ease;
		   
        }

        .music-cover-1:hover {
           opacity: 0.9; 
        }

        .music-cover {
           position: relative;
           width: 250px; 
		   overflow: hidden; 
           transition: transform 0.3s ease;
		   
        }
		
	.music-cover:hover {
           opacity: 0.9; 
        }

        .music-cover img {
           width: 100%;
           height: auto;
           border-radius: 10px; 
        }

        .music-cover-1 img {
           width: 100%;
           height: auto;
           border-radius: 10px; 
        }

         .music-cover-2 img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-sizing: border-box;
    border: 5px solid #ffd700; 
        }

     .music-cover-2:hover {           
		  opacity: 0.9;        
	  }

      .music-cover-2 {           
		  position: relative;           
		  width: 250px; 		   
		  overflow: hidden;         
		  transition: transform 0.3s ease;   
	  }

        .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    color: rgb(36 36 36);
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: #ffd700;
    color: #ffffff;
    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.6),
        0 0 20px rgba(255, 255, 255, 0.4),
        0 0 30px rgba(255, 255, 255, 0.3);
}

        .music-info {
           text-align: center;
        }

       .seek-bar {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(to right, #00336a 0%, #c7c7c7 0%);
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  padding: 0;
  margin: 10px 0;
  transition: background 0.2s;
}

.seek-bar::-webkit-slider-runnable-track {
  height: 6px;
  background: transparent;
  border-radius: 5px;
}

.seek-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  background: #242424;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -4px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.seek-bar:hover::-webkit-slider-thumb {
  background: #ffd700;
}

.seek-bar::-moz-range-track {
  height: 6px;
  background: transparent;
  border-radius: 5px;
}

.seek-bar::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: #333;
  border-radius: 50%;
  cursor: pointer;
}

        .playing {
           background-color: #ffd700;
	   color: rgb(255 255 255);
        }

        .image-description {
            text-align: center; 
            margin-top: 10px; 
        }

   .download-button {
  position: absolute !important;
  bottom: 47px !important;		
  right: 12px !important;

  background: linear-gradient(135deg, rgb(199 199 199 / 52%)) !important;
  color: #f5f5f5 !important;
  padding: 8px 16px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  box-shadow: 0 0 10px rgb(255 255 255 / 50%) !important;
  cursor: pointer !important;
  user-select: none !important;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.15)) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease !important;
  color: #242424  !important;
}

.download-button:hover {
  background: linear-gradient(135deg, #ffd700) !important;
  transform: translateY(px) !important;
  box-shadow: 0 -2px 15px rgb(246 246 246) !important;
	color: #ffffff  !important;
}

