.player-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

#current-track {
    margin: 0; 
    flex: 1;
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
}

#play-pause-btn {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(0, 0, 0, 0.1) 51%, rgba(255, 255, 255, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

#play-pause-btn:hover {
    background: linear-gradient(180deg, #ff8181 0%, #ef4444 50%, #991b1b 51%, #dc2626 100%);
    transform: scale(1.1);
}