.spotify-container {
    margin: 1.5rem 0 0 0;
    padding: 0 0;
}

div.spotify-player-link,
a.spotify-player-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    background: rgba(0, 0, 0, 0.04);
    padding: 1.5rem;
    border-radius: 8px;
}

.spotify-player-link:hover {
    background: rgba(0, 0, 0, 0.07);
}

/* Create a shared class for both image and placeholder */
.spotify-album-art,
.spotify-player-link img,
.spotify-player-link .placeholder-art {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    margin: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.spotify-player-link .placeholder-art {
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.spotify-player-link .track-info {
    flex-grow: 1;
    text-align: left;
}

.spotify-player-link .track-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.spotify-player-link .artist-name {
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.9em;
}

.spotify-player-link .progress-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.spotify-player-link .progress-bar {
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
    flex-grow: 1;
}

.spotify-player-link .progress {
    height: 100%;
    background: #1DB954;
    transition: width 1s linear;
}

.spotify-player-link .time-info {
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.8em;
    white-space: nowrap;
} 