.card-img-top {
  transition: transform 0.3s ease; /* Transición suave */
}

.card-img-top:hover {
  transform: scale(1.05); /* Aumenta el tamaño de la imagen al 105% */
}

.mini-radio-player {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #262a38;
  color: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.player-container {
  display: flex;
  align-items: center;
}

.album-art {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.album-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-controls {
  display: flex;
  align-items: center;
}

.play-pause-btn {
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 22px;
  margin-right: 10px;
  cursor: pointer;
}

.song-info {
  flex-grow: 1;
}

.song-title {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  color: #ccc;
}

.artist-name {
  margin: 0;
  font-size: 12px;
  color: #999;
}