/* Spotify Placeholder Styles */

#spotify-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-alt) 100%);
  border-radius: 12px;
  padding: 20px;
  box-sizing: border-box;
  color: #fff;
  font-family: 'Outfit', sans-serif;
}

#spotify-placeholder svg {
  flex-shrink: 0;
  opacity: 0.9;
}

#spotify-placeholder > div {
  text-align: center;
}

#spotify-placeholder p {
  margin: 0;
  line-height: 1.5;
}

#spotify-placeholder p:first-child {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

#spotify-placeholder p:last-child {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.spotify-manage-btn {
  background-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 10px 24px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Outfit', sans-serif;
}

.spotify-manage-btn:hover {
  background-color: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-1px);
}

.spotify-manage-btn:active {
  transform: translateY(1px);
}
