/* mobile view position*/
#audio-player {
    position: fixed;
    right: 20px;
    top: 15%;
    transform: translateY(-50%);
    width: 50px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999999;
}

/* Spinning Disk (Background Image) */
.disk {
    width: 70px;
    height: 70px;
    background: url('../images/cdplayer.png') no-repeat center;
    background-size: cover;
    animation: spin 10s linear infinite;
    animation-play-state: paused;
    cursor: pointer;
}

/* For Larger Screens (Desktop) - Move to Bottom Right */
@media (min-width: 768px) {
    #audio-player {        
        top: 10%;        
        width: 100px;
        height: 120px;        
    }

    .disk {
        width: 100px;
        height: 100px;        
    }
}


/* Song Name Scrolling */
#song-name-container {
    width: 90px;
    overflow: hidden;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px;
    border-radius: 4px;
    margin-top: 5px;
}

#song-name {
    display: inline-block;
    color: white;
    font-size: 12px;
    position: relative;
    animation: scrollText 5s linear infinite;
    animation-play-state: paused; /* Initially paused */
}

/* Spinning Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Song Name Scrolling Animation */
@keyframes scrollText {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}