/* ✅ Base Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.download-container {
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
}

.song-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-start;
}

.song-wrapper img {
  width: 340px;
  height: 240px;
  border-radius: 10px;
  margin-left: 0px;
}

.song-info {
  flex: 1;
  min-width: 250px;
}

.share-icons {
  margin-top: 10px;
  
}

.share-icons a {
  margin-right: 10px;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.share-icons a:hover {
  color: #007bff;
}

.download-options {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.download-options th,
.download-options td {
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

.download-btn,
.play-btn {
  display: inline-block;
  margin: 5px 10px 5px 0;
  font-size: 14px;
}

/* ✅ Tablet View */
@media (max-width: 768px) {
  .song-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .song-wrapper img {
    width: 360px;
    height: 252px;
    margin-left: 0;
    width: 560px;
    margin-top: -40px;
  }

  .song-info {
    min-width: 100%;
    align-items: flex-start;
            margin-left: 10px;
  }

  .download-options th,
  .download-options td {
    font-size: 14px;
  }
}

/* ✅ Mobile View */
@media (max-width: 480px) {
  .download-btn,
  .play-btn {
    width: 100%;
    margin-bottom: 8px;
    text-align: center;
  }

  .download-options th,
  .download-options td {
    padding: 8px;
  }

  .share-icons a {
    font-size: 1.2rem;
  }



