/* ====== MAIN PLAYER CONTAINER ====== */
.player {
  width: 100%;
  max-width: 500px;
  background: #e6e6e6;
  border: 1px solid #999;
  box-shadow: inset 0 1px 0 #fff;
  color: #333;
  font-size: 13px;
}

.player a {
  color: #2a5db0 !important;   /* new link color */
  text-decoration: none; /* remove underline */
}

.player a:hover {
  color: #1a3a7a !important;      /* new hover color */
  text-decoration: underline; /* optional hover effect */
}

/* ====== TOP CONTROL BAR ====== */
.player-header {
  display: flex;
  align-items: center;
  background: linear-gradient(#dcdcdc, #bfbfbf);
  padding: 6px 8px;
  border-bottom: 1px solid #999;
  gap: 6px;
}

/* Buttons */
.controls {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}
.control-btn {
   width: 22px;
  height: 22px;
  background: linear-gradient(#f5f5f5, #cfcfcf);
  border: 1px solid #999;
  border-radius: 3px;
  box-shadow: inset 0 1px 0 #fff;
  cursor: pointer;
  display: flex;           
  align-items: center;      
  justify-content: center;  
  padding: 0;               
}
.control-btn img {
  width: 14px;    
  height: auto;
  display: block;
  margin: auto;
  pointer-events: none; 
}

.control-btn:hover {
  background: linear-gradient(#ffffff, #d9d9d9);
}

/* Track Info (Title Bar) */
.track-info {
  flex: 1;
  margin: 0 10px;
  background: #000000;
  color: #fff;
  padding: 4px 8px;
  border-radius: 3px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

/* Text wrapper so text stacks nicely */
.track-text {
  display: flex;
  flex-direction: column;
}

.track-title {
  font-weight: bold;
  font-size: 13px;
}

.track-artist {
  font-size: 11px;
  opacity: 0.85;
}

/* Equalizer GIF */
.eq-gif {
  width: 100px;   /* control size here */
  height: auto;
  flex-shrink: 0;
}

/* ====== STATS BAR ====== */
.stats {
  display: flex;
  justify-content: space-between;
  padding: 5px 8px;
  font-size: 11px;
  background: #f4f4f4;
  border-bottom: 1px solid #ccc;
}

/* ====== CONTENT AREA ====== */
.player-body {
  display: flex;
  padding: 8px;
  gap: 10px;
}

/* Album Art (scaled down) */
.album-art {
  width: 120px;
  height: 120px;
  border: 1px solid #999;
  background: #ccc;
  flex-shrink: 0;
  display: flex;              
  align-items: center;       
  justify-content: center;    
  overflow: hidden;     
}
.album-art img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}

/* Track List */
.track-list {
  flex: 1;
}

.track {
  padding: 5px 0;
  border-bottom: 1px dotted #bbb;
}

.track a {
  color: #0000FF;
  text-decoration: none;
  font-weight: bold;
  font-size: 12px;
}

.track a:hover {
  text-decoration: underline;
}

.track-meta {
  font-size: 10px;
  color: #666;
  margin-top: 2px;
}

/* ====== FOOTER ====== */
.player-footer {
  padding: 6px 8px;
  font-size: 10px;
  background: #f0f0f0;
  border-top: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.small-btn {
  padding: 2px 6px;
  border: 1px solid #999;
  background: linear-gradient(#ffffff, #dcdcdc);
  border-radius: 3px;
  font-size: 10px;
  cursor: pointer;
}

.small-btn:hover {
  background: linear-gradient(#ffffff, #cfcfcf);
}
