/* ===============================
   JioSaavn Style File List (Gold)
   =============================== */

.jiosaavn-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Each song row */
.jiosaavn-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-bottom: 1px solid #eee;
  background: #fff;
  transition: background 0.2s ease;
}

.jiosaavn-list li:hover {
  background: #fffaf0;
}

/* Thumbnail */
.song-thumb img {
  border-radius: 8px;
  object-fit: cover;
}

/* Song Meta */
.song-meta {
  flex: 1;
  text-decoration: none;
}

.song-title {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  line-height: 1.3;
}

.song-singer {
  font-size: 13px;
  color: #777;
  margin-top: 2px;
}

.song-size {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}

/* Play Button */
.song-play-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #7a5c00;
  background: linear-gradient(135deg, #ffe082, #f7c948);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.song-play-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* ===============================
   MOBILE OPTIMIZATION
   =============================== */
@media (max-width: 768px) {
  .jiosaavn-list li {
    padding: 10px;
  }

  .song-title {
    font-size: 14px;
  }

  .song-singer {
    font-size: 12px;
  }

  .song-play-btn {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
}

/* ===============================
   STICKY PLAYER SAFE SPACE
   =============================== */
body {
  padding-bottom: 80px; /* prevents list hiding behind player */
}
