/* =====================
   Top Liked Music CSS - MobRadio
   ===================== */

/* ===== Container Layout ===== */
/* Main container styling */
.top-liked-music-list {
  max-width: 500px;
  margin: 30px auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 24px 32px;
}

/* ===== Header ===== */
/* Title styling */
.top-liked-music-list h2 {
  text-align: center;
  margin-bottom: 24px;
  color: #007bff;
  font-size: 1.5em;
}

/* ===== List Structure ===== */
/* Ordered list base styling */
.top-liked-music-list ol {
  padding-left: 20px;
  margin: 0;
}

/* List item styling */
.top-liked-music-list li {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 1.1em;
}

/* Remove border from last item */
.top-liked-music-list li:last-child {
  border-bottom: none;
}

/* ===== Text Elements ===== */
/* Artist/Title emphasis */
.top-liked-music-list strong {
  color: #222;
  font-size: 1.15em;
}

/* Additional info text */
.top-liked-music-list span {
  display: block;
  color: #666;
  margin-top: 2px;
}

/* ===== Likes Counter ===== */
/* Likes count container */
.top-liked-music-list .likes {
  color: #e74c3c;
  font-weight: bold;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Heart icon styling */
.top-liked-music-list .likes .heart {
  color: #e74c3c;
  font-size: 1.1em;
}
