/*
Theme Name: Extra_Child
Theme URI: https://mycambodia.cc
Description: Child Theme For Extra.
Author: Kjarri
Author URI: https://mycambodia.cc
Version: 1.0.0
Template: Extra
*/
/* -- PUT YOUR CUSTOM CSS BELOW THIS LINE -- DO NOT EDIT ABOVE THIS LINE --*/

#soundcloud-widget {border-radius: 12px;}
.soundcloud-player {
  max-width: 700px;
  margin: auto;
}

.track-list {
  height: 420px;              /* Shows approximately 7–8 tracks */
  overflow-y: auto;           /* Allows more tracks */
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-top: 15px;
}

.track {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background 0.2s;
}

.track:hover {
  background: #f1f1f1;
}

.track.active {
  background: #ffe6d5;
  border-left: 4px solid #ff5500;
}

.track-number {
  width: 25px;
  color: #777;
  text-align: center;
}

.track-title {
  font-weight: bold;
}

.track-artist {
  color: #777;
  font-size: 14px;
  margin-top: 3px;
}

.loading {
  padding: 20px;
  text-align: center;
  color: #777;
}