/* ===============================
   JioSaavn Style Song List
   =============================== */

.js-list-wrapper {
  background: #f9f9f9;
}

.js-song-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.js-song-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.js-thumb img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}

/* Song info */
.js-meta {
  flex: 1;
}

.js-title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
}

.js-singer {
  font-size: 13px;
  color: #777;
  margin-top: 2px;
}

.js-size {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}

/* Play button */
.js-play-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #e7c76a;
  color: #3b2f00;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.js-play-btn:hover {
  background: #f1d27c;
}

/* Mobile */
@media (max-width: 768px) {
  .js-song-item {
    padding: 12px;
  }

  .js-title {
    font-size: 14px;
  }

  .js-play-btn {
    width: 38px;
    height: 38px;
  }
}

/* Space for bottom player */
body {
  padding-bottom: 80px;
}
