.songItem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    padding: 1vh 1.5vh;
    gap: 1.2vh;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(
        90deg,
        rgb(28, 47, 56) 40%,
        rgba(1, 40, 43, 0.412) 100%
    );
    border-radius: 1vh;
}

.songItem.playing img.artwork {
    height: 10vh;
    width: 10vh;
    border-radius: 0.8vh;
}

.songItem.playing .text {
    gap: 0.5vh;
}

.songItem .playingLabel {
    font-size: 2vh;
    opacity: 0.35;
}

.songItem.playing .title {
    font-weight: bold;
    font-size: 1.8vh;
}

.songItem.playing .artist {
    font-size: 2.6vh;
    opacity: 0.8;
}

.songItem .onairBadge {
    width: 8vh;
    height: auto;
    margin-left: 1vh;
    animation: onairGlow 1.8s infinite;
}

.songItem .left {
    display: flex;
    align-items: center;
    gap: 1vh;
}

.songItem .right {
    display: flex;
    align-items: center;
    gap: 1vh;
}

.songItem img.artwork {
    height: 6vh;
    width: 6vh;
    object-fit: cover;
    border-radius: 0.5vh;
    cursor: pointer;
}

.songItem .text {
    display: flex;
    flex-direction: column;
    gap: 0.2vh;
}

.songItem .artist {
    font-size: 1.8vh;
}

.songItem .track {
    font-weight: bold;
    font-size: 1.6vh;
    opacity: 0.8;
}

.songItem.previewPlaying {
    background: rgba(255,255,255,0.05);
}

.songItem.playing {

    background: linear-gradient(
        90deg,
        rgb(18, 30, 36) 40%,
        rgb(16, 46, 48) 100%
    );

    box-shadow:
        0 0.6vh 1.2vh rgba(0,0,0,0.35),
        0 0 0.8vh rgba(0,255,200,0.18);

    position: relative;
    z-index: 2;

    margin-top: -1vh;

    border-radius: 0;
}
#historyItems {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vh;
    padding: 1vh;
}
@keyframes onairGlow {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 4px red);
    }
    50% {
        transform: scale(1.08);
        filter: drop-shadow(0 0 14px red);
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 4px red);
    }
}