.snp-player {
    display: flex;
    align-items: center; /* 👉 dit centreert verticaal */
    gap: 10px;           /* vervangt margin-right op image */
    font-family: sans-serif;
    margin-top: 10px;
}

.snp-info {
    display: flex;
    flex-direction: column;
    justify-content: center; /* extra zekerheid voor verticale balans */
    gap: 2px;
    overflow: hidden;
    min-width: 0;
}

.snp-info .live {
    color: red;
    font-weight: bold;
    font-size: 12px;
    line-height: 1;
}

.snp-info .live::before {
    content: "●";
    margin-right: 4px;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%   { opacity: 1; transform: scale(1); }
    50%  { opacity: 0.3; transform: scale(0.85); }
    100% { opacity: 1; transform: scale(1); }
}

.snp-meta {
    width: 100%;
    overflow: hidden;
    min-width: 0;
}

.snp-meta-inner {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    transform: translateX(0);
    will-change: transform;
}

.snp-meta .artist {
    font-weight: bold;
    flex-shrink: 0;
}

.snp-meta .track {
    color: #666;
    flex-shrink: 0;
}

.snp-meta.scrolling .snp-meta-inner {
    animation: snp-marquee var(--marquee-duration, 12s) linear infinite;
}

@keyframes snp-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-1 * var(--marquee-distance, 0px)));
    }
}

.snp-info .live.offline {
    color: #999;
    font-weight: bold;
}

.snp-artwork img {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: thin solid #5a5a5a;
    display: block; /* voorkomt kleine vertical offset issues */
	transition: opacity 0.2s ease;
    opacity: 1;
}

.snp-info .artist {
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
    font-weight: normal;
}
.snp-info .track {
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
    font-weight: normal;
    color: white;
}
.snp-info .live {
	font-size: 12px;
    font-weight: normal;
    font-family: 'Ubuntu', sans-serif;
    color: red;
    margin-right: 5px;
}
.artist, .track {
    transition: opacity 0.3s;
}

.snp-info .artist,
.snp-info .track {
    text-overflow: ellipsis;
    overflow: hidden;
}

.snp-info .separator {
    display: none;
}