/* Стили для блока Spotify Now Playing */
.spotify-now-playing {
  margin-top: 20px;
  padding: 15px;
  background-color: rgba(30, 215, 96, 0.1);
  border-radius: 10px;
  border-left: 4px solid #1db954;
}

.spotify-now-playing h3 {
  margin-top: 0;
  color: #1db954;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.spotify-track {
  display: flex;
  align-items: center;
}

.spotify-album-cover {
  width: 60px;
  height: 60px;
  border-radius: 5px;
  margin-right: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.spotify-track-info {
  display: flex;
  flex-direction: column;
}

.spotify-track-name {
  font-weight: bold;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  margin-bottom: 5px;
}

.spotify-track-name:hover {
  text-decoration: underline;
  color: #1db954;
}

.spotify-artist-name {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 3px;
}

.spotify-album-name {
  font-size: 0.9rem;
  color: #aaa;
  font-style: italic;
}

.spotify-no-track {
  color: #aaa;
  font-style: italic;
}

/* Анимация для индикатора воспроизведения */
@keyframes spotify-playing {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}

.spotify-playing-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #1db954;
  border-radius: 50%;
  margin-right: 8px;
  animation: spotify-playing 1.5s infinite;
}
