/* Basic styling for the container */
.media-player-container {
  display: flex;
  max-width: 800px;
  width: 100%;
  margin: auto;
  border-bottom: 1px solid #ccc;
  padding: 10px;
  box-sizing: border-box;
  margin-bottom: 20px; /* Add margin between audio players */
  transition: background-color 0.3s ease; /* Smooth transition for background color */
  border-radius: 10px; /* Adjust the radius as needed */
  overflow: hidden; /* Ensure contents don't overflow rounded corners */	
}

/* Style for the thumbnail */
.thumbnail {
  width: 75px; /* Reduced size to 100x100px */
  height: 75px;
}

/* Style for each control column */
.control-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 20px; /* Adjusted margin to increase space between columns */
}

/* Style for the play button (visible) */
.play-button, .pause-button, .icon {
  cursor: pointer;
  font-size: 24px;
  margin-top: 10px;
  color: black; /* Default color for play, pause, and icons */
}

/* Style for the pause button (hidden) */
.pause-button {
  display: none;
}



/* Style for the song and artist information */
.song-info {
  font-size: 16px;
  text-align: center;
  margin-top: 0px; /* Adjusted margin to align with other icons */
  width: 120px; /* Increased width for song-info */
  color: black; /* Default text color */
  transition: color 0.3s ease; /* Smooth transition for text color */
}

.song-info p.artist {
  color: darkgray;
  font-weight: bold;
}

/* Style for the time/duration information */
.time-info {
 /* font-size: 12px;
  margin-top: 10px;
  color: black; *//* Default color for time info */
  margin-top: 10px;
  width:150%;
}

/* Style for the forward and rewind buttons */
.rewind-button, .forward-button {
  font-size: 20px;
  margin-top: 10px;
}

/* Hover effect */
.media-player-container:hover {
  background-color: #333; /* Dark grey background on hover */
}

/* Text color change on hover */
.media-player-container:hover .song-info {
  color: white; /* White text color on hover */
}

/* Color change for other controls on hover */
.media-player-container:hover .play-button,
.media-player-container:hover .pause-button,
.media-player-container:hover .icon,
.media-player-container:hover .time-info,
.media-player-container:hover .rewind-button,
.media-player-container:hover .forward-button,
.media-player-container:hover .download
 {
  color: white; /* White color for play, pause, icons, and time-info on hover */
}

/* Active state */
.media-player-container.active {
  background-color: #333; /* Dark grey background for active state */
}

/* Active state text color change */
.media-player-container.active .song-info {
  color: white; /* White text color for active state */
}

/* Link style */
.song-link {
  color: inherit; /* Inherit the color from the parent */
  text-decoration: none; /* Remove underline */
}

.download{
	
	margin-top:10px;
}


/* Style for the download icon (arrow pointing downward) */
.download-icon {
  font-size: 20px;
  cursor: pointer;
  margin-top: 10px;
}

.download-progress {
  display: none;
  width: 30px; /* Adjust as needed */
  height: 30px; /* Adjust as needed */
  position: relative;
}

.progress-bar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #3498db; /* Progress bar color */
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
  transform-origin: center;
}

/* Style for the more icon */
.more-icon {
  font-size: 20px;
  cursor: pointer;
  margin-top: 10px;
}

/* Your existing styles */
/* ... */

/* Style for the more icon */
.more-icon {
  font-size: 20px;
  cursor: pointer;
  margin-top: 10px;
}

/* Style for the hidden container (initially hidden) */
.hidden-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  justify-content: center;
  align-items: center;
}

/* Style for the popup controls */
.popup-controls {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.popup-icons {
  display: flex;
  justify-content: space-between;
}

 .control-icons {
	 
	 display:none;
 }

/* Additional adjustments for mobile */
@media screen and (max-width: 600px) {
  .media-player-container {
    flex-direction: column;
    align-items: center;
    text-align: center; /* Center text within each control */
	width: 80%; /* Adjust as needed */
 }

 .control-icons {
    display: flex;
    flex-direction: row; /* Display icons horizontally */
    justify-content: center; /* Add space between icons */
    align-items: center; /* Center vertically */
    width: 100%; /* Ensure full width */
  }

  .rewind-btn,
  .forward-btn {
    display: inline-block; /* Ensure inline display */
    margin-right: 10px; /* Adjusted space between icons if needed */
  }	


	
	.play-button{
	
		margin-top:20px;
		margin-bottom:20px;
	}	

  /* Display rewind, forward, download, and share icons on the same line */
  
   .download-icon,
  .share-icon {
    
	display: inline-block;
    margin-right: 10px; /* Adjusted space between icons */
  }
  
  .rewind-button,
  .forward-button
  {
    display: none;/*inline-block;
    margin-right: 10px; /* Adjusted space between icons */
  }
}