/* ==============================
   FILE SHOW – BOTTOM MUSIC PLAYER
============================== */

.od-bottom-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111;
  color: #fff;
  display: none;
  align-items: center;
  padding: 10px;
  z-index: 99999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
}

.od-bottom-player.active {
  display: flex;
}

.od-bp-img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  margin-right: 10px;
  object-fit: cover;
}

.od-bp-info {
  flex: 1;
  overflow: hidden;
}

.od-bp-title {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.od-bp-singer {
  font-size: 12px;
  color: #bbb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.od-bottom-player button {
  background: #1db954;
  border: none;
  color: #fff;
  font-size: 18px;
  padding: 8px 14px;
  border-radius: 50%;
  cursor: pointer;
}

/* ===== SAVE & PLAY BUTTONS ===== */

.save-song-btn,
.play-online-btn {
  margin-top: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  border: none;
}

.save-song-btn {
  background: #e3f2fd;
  color: #1565c0;
}

.play-online-btn {
  background: #e8f5e9;
  color: #2e7d32;
  margin-left: 6px;
}
