/* spotify-window.css — Spotify player window styles */

/* ── Window body override ── */
#spotify-window .window-body {
  padding: 0;
  background: #121212;
}

/* ── Header / album art area ── */
.spotify-header {
  display: flex;
  justify-content: center;
  padding: 32px 24px 16px;
  background: #121212;
}

.spotify-header img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* ── Track info ── */
.spotify-info {
  text-align: center;
  padding: 16px 24px 8px;
}

.spotify-info .track-name {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.spotify-info .track-artist {
  color: #b3b3b3;
  font-size: 13px;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Playback controls ── */
.spotify-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 16px 24px;
}

.spotify-controls button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  color: #b3b3b3;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}

.spotify-controls button:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.spotify-controls button.play-btn {
  width: 44px;
  height: 44px;
  background: #1DB954;
  color: #000;
  font-size: 18px;
}

.spotify-controls button.play-btn:hover {
  background: #1ed760;
  transform: scale(1.04);
}

/* ── Spotify iframe embed ── */
#spotify-embed-container {
  width: 100%;
  height: 100%;
  padding: 0;
  background: #121212;
  overflow: hidden;
}

#spotify-embed-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
}
